浏览代码

Detect conflict when local and server version are changed

masensio 9 年之前
父节点
当前提交
3444d61be8
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/com/owncloud/android/operations/SynchronizeFolderOperation.java

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

@@ -404,7 +404,7 @@ public class SynchronizeFolderOperation extends SyncOperation {
                     /// this should result in direct upload of files that were locally modified
                     SynchronizeFileOperation operation = new SynchronizeFileOperation(
                             child,
-                            (child.getEtagInConflict() != null ? null : child),
+                            (child.getEtagInConflict() != null ? child : null),
                             mAccount,
                             true,
                             mContext