فهرست منبع

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

masensio 11 سال پیش
والد
کامیت
8283b301e1
1فایلهای تغییر یافته به همراه6 افزوده شده و 0 حذف شده
  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;
     }