Skip to content

Commit

Permalink
Update app/src/main/java/com/owncloud/android/utils/FilesSyncHelper.java
Browse files Browse the repository at this point in the history
Co-authored-by: Tom <70907959+ZetaTom@users.noreply.github.com>
Signed-off-by: Jonas Mayer <43114340+JonasMayerDev@users.noreply.github.com>
  • Loading branch information
JonasMayerDev and ZetaTom authored Apr 16, 2024
1 parent e544e24 commit 4bd0e2e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ private static void insertContentIntoDB(Uri uri, SyncedFolder syncedFolder, long
isFolder = new File(contentPath).isDirectory();

if (syncedFolder.getLastScanTimestampMs() != SyncedFolder.NOT_SCANNED_YET &&
cursor.getLong(column_index_date_modified) < (lastCheckMs / 1000.0)) {
cursor.getLong(column_index_date_modified) < (lastCheckMs / 1000)) {
continue;
}

Expand Down

0 comments on commit 4bd0e2e

Please sign in to comment.