mirror of
https://github.com/nextcloud/android.git
synced 2024-11-22 21:25:35 +03:00
Update app/src/main/java/com/owncloud/android/utils/FilesSyncHelper.java
Co-authored-by: Tom <70907959+ZetaTom@users.noreply.github.com> Signed-off-by: Jonas Mayer <43114340+JonasMayerDev@users.noreply.github.com>
This commit is contained in:
parent
350e59d395
commit
be7d997dc3
1 changed files with 1 additions and 1 deletions
|
@ -229,7 +229,7 @@ public final class FilesSyncHelper {
|
|||
continue;
|
||||
}
|
||||
|
||||
if (syncedFolder.isExisting() || cursor.getLong(column_index_date_modified) >= enabledTimestampMs / 1000.0) {
|
||||
if (syncedFolder.isExisting() || cursor.getLong(column_index_date_modified) >= enabledTimestampMs / 1000) {
|
||||
// storeOrUpdateFileValue takes a few ms
|
||||
// -> Rest of this file check takes not even 1 ms.
|
||||
filesystemDataProvider.storeOrUpdateFileValue(contentPath,
|
||||
|
|
Loading…
Reference in a new issue