浏览代码

Fixed bug in synchronization after adding new field to improve the check of changes in server

David A. Velasco 12 年之前
父节点
当前提交
a08c92cf9a
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      src/com/owncloud/android/operations/SynchronizeFolderOperation.java

+ 1 - 0
src/com/owncloud/android/operations/SynchronizeFolderOperation.java

@@ -164,6 +164,7 @@ public class SynchronizeFolderOperation extends RemoteOperation {
                     if (oldFile != null) {
                         file.setKeepInSync(oldFile.keepInSync());
                         file.setLastSyncDateForData(oldFile.getLastSyncDateForData());
+                        file.setModificationTimestampAtLastSyncForData(oldFile.getModificationTimestampAtLastSyncForData());    // not local, but must be kept unchanged when the file contents are not updated
                         checkAndFixForeignStoragePath(oldFile);
                         file.setStoragePath(oldFile.getStoragePath());
                     }