tobiasKaminsky преди 8 години
родител
ревизия
9544b79197
променени са 1 файла, в които са добавени 1 реда и са изтрити 4 реда
  1. 1 4
      src/main/java/com/owncloud/android/datamodel/FileDataStorageManager.java

+ 1 - 4
src/main/java/com/owncloud/android/datamodel/FileDataStorageManager.java

@@ -251,10 +251,7 @@ public class FileDataStorageManager {
     }
 
     public OCFile saveFileWithParent(OCFile file, Context context) {
-        if (file.getParentId() != 0 || file.getRemotePath().equals("/")) {
-//            nothing needed
-
-        } else {
+        if (file.getParentId() == 0 && !file.getRemotePath().equals("/")) {
             String remotePath = file.getRemotePath();
             String parentPath = remotePath.substring(0, remotePath.lastIndexOf(file.getFileName()));