Эх сурвалжийг харах

Bug fixed (and some refactoring): crash on local removal of a folder

David A. Velasco 10 жил өмнө
parent
commit
0f39ff841a

+ 6 - 2
src/com/owncloud/android/datamodel/FileDataStorageManager.java

@@ -486,8 +486,12 @@ public class FileDataStorageManager {
                     }
                     success &= (deleted > 0); 
                 }
-                if (removeLocalCopy && file.isDown() && file.getStoragePath() != null && success) {
-                    success = new File(file.getStoragePath()).delete();
+                String localPath = file.getStoragePath();
+                if (removeLocalCopy && file.isDown() && localPath != null && success) {
+                    success = new File(localPath).delete();
+                    if (success) {
+                        triggerMediaScan(localPath);
+                    }
                     if (!removeDBData && success) {
                         // maybe unnecessary, but should be checked TODO remove if unnecessary
                         file.setStoragePath(null);

+ 0 - 5
src/com/owncloud/android/ui/dialog/RemoveFileDialogFragment.java

@@ -96,7 +96,6 @@ implements ConfirmationDialogFragmentListener {
         FileDataStorageManager storageManager = cg.getStorageManager();
         if (storageManager.getFileById(mTargetFile.getFileId()) != null) {
             cg.getFileOperationsHelper().removeFile(mTargetFile, false);
-            storageManager.triggerMediaScan(mTargetFile.getStoragePath());
         }
     }
     
@@ -105,7 +104,6 @@ implements ConfirmationDialogFragmentListener {
      */
     @Override
     public void onNeutral(String callerTag) {
-        String path = mTargetFile.getStoragePath();
         ComponentsGetter cg = (ComponentsGetter)getSherlockActivity();
         cg.getFileOperationsHelper().removeFile(mTargetFile, true);
         
@@ -135,9 +133,6 @@ implements ConfirmationDialogFragmentListener {
            folder.setEtag("");
            storageManager.saveFile(folder);
         }
-        
-        // Trigger MediaScan
-        storageManager.triggerMediaScan(path);
     }
 
     @Override