Prevent that full synchronization process browses deeper when already knows no change...
authorDavid A. Velasco <dvelasco@solidgear.es>
Mon, 17 Mar 2014 12:02:36 +0000 (13:02 +0100)
committerDavid A. Velasco <dvelasco@solidgear.es>
Mon, 17 Mar 2014 12:02:36 +0000 (13:02 +0100)
src/com/owncloud/android/syncadapter/FileSyncAdapter.java

index 4f1cd68..b8e488b 100644 (file)
@@ -339,18 +339,12 @@ public class FileSyncAdapter extends AbstractOwnCloudSyncAdapter {
     private void fetchChildren(OCFile parent, List<OCFile> files, boolean parentEtagChanged) {
         int i;
         OCFile newFile = null;
-        //String etag = null;
-        //boolean syncDown = false;
         for (i=0; i < files.size() && !mCancellation; i++) {
             newFile = files.get(i);
             if (newFile.isFolder()) {
-                /*
-                etag = newFile.getEtag();
-                syncDown = (parentEtagChanged || etag == null || etag.length() == 0);
-                if(syncDown) { */
+                if(parentEtagChanged) { // prevent go deeper if already know there are no more changes
                     synchronizeFolder(newFile);
-                    //sendLocalBroadcast(EVENT_FULL_SYNC_FOLDER_SIZE_SYNCED, parent.getRemotePath(), null);
-                //}
+                }
             }
         }