Loading app/src/main/java/foundation/e/drive/utils/FileDiffUtils.java +1 −2 Original line number Diff line number Diff line Loading @@ -43,7 +43,6 @@ public class FileDiffUtils { if (isRemoteSizeSameAsLocalSize(remoteFile, localFile)) { return Action.updateDB; } return Action.Download; } Loading Loading @@ -80,7 +79,7 @@ public class FileDiffUtils { * @return true if localLastModified store in Database == 0 */ private static boolean hasAlreadyBeenDownloaded(SyncedFileState fileState) { return fileState.getLocalLastModified() == 0L; return fileState.getLocalLastModified() > 0L; } /** Loading Loading
app/src/main/java/foundation/e/drive/utils/FileDiffUtils.java +1 −2 Original line number Diff line number Diff line Loading @@ -43,7 +43,6 @@ public class FileDiffUtils { if (isRemoteSizeSameAsLocalSize(remoteFile, localFile)) { return Action.updateDB; } return Action.Download; } Loading Loading @@ -80,7 +79,7 @@ public class FileDiffUtils { * @return true if localLastModified store in Database == 0 */ private static boolean hasAlreadyBeenDownloaded(SyncedFileState fileState) { return fileState.getLocalLastModified() == 0L; return fileState.getLocalLastModified() > 0L; } /** Loading