Browse Source

Update filelist for update actions, sent notification to uri in FileContenProvider

masensio 11 years ago
parent
commit
8283b301e1
1 changed files with 6 additions and 0 deletions
  1. 6 0
      src/com/owncloud/android/providers/FileContentProvider.java

+ 6 - 0
src/com/owncloud/android/providers/FileContentProvider.java

@@ -483,6 +483,12 @@ public class FileContentProvider extends ContentProvider {
             db.endTransaction();
         }
         getContext().getContentResolver().notifyChange(uri, null);
+        
+     // Get parentId to notify the change
+        long parentId = getParentId(uri);
+        // Notify the change to the parent folder
+        notifyChangeToParentUri(parentId);
+        
         return count;
     }