mirror of
https://github.com/nextcloud/android.git
synced 2024-11-22 21:25:35 +03:00
Fix for the fix xD
Signed-off-by: Mario Danic <mario@lovelyhq.com>
This commit is contained in:
parent
ce7dbb437f
commit
27954c4287
1 changed files with 1 additions and 1 deletions
|
@ -139,7 +139,7 @@ public class FilesystemDataProvider {
|
|||
|
||||
if (data.getModifiedAt() != modifiedAt) {
|
||||
long newCrc32 = getFileChecksum(localPath);
|
||||
if (data.getCrc32() == null || (newCrc32 != -1 && data.getCrc32().equals(Long.toString(newCrc32)))) {
|
||||
if (data.getCrc32() == null || (newCrc32 != -1 && !data.getCrc32().equals(Long.toString(newCrc32)))) {
|
||||
cv.put(ProviderMeta.ProviderTableMeta.FILESYSTEM_CRC32, Long.toString(newCrc32));
|
||||
cv.put(ProviderMeta.ProviderTableMeta.FILESYSTEM_FILE_SENT_FOR_UPLOAD, 0);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue