mirror of
https://github.com/nextcloud/android.git
synced 2024-11-26 23:28:42 +03:00
OC-1701: Conflict detected in keep-in-sync
This commit is contained in:
parent
31ccf4e966
commit
98d95b576e
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ public class SynchronizeFileOperation extends RemoteOperation {
|
|||
// TODO this will be always true after the app is upgraded to database version 2; will result in unnecessary uploads
|
||||
|
||||
/// decide action to perform depending upon changes
|
||||
if (localChanged && serverChanged) {
|
||||
if (!mLocalFile.getEtag().isEmpty() && localChanged && serverChanged) {
|
||||
result = new RemoteOperationResult(ResultCode.SYNC_CONFLICT);
|
||||
|
||||
} else if (localChanged) {
|
||||
|
|
Loading…
Reference in a new issue