Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4ef7c845 authored by vince-bourgmayer's avatar vince-bourgmayer
Browse files

fix issue in SyncedFolderDAO.java by assigning correct value to Local_Last_Modified column in DB

parent c3973fd7
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -79,7 +79,7 @@ class SyncedFolderDAO {
        values.put( LOCAL_PATH, syncedFolder.getLocalFolder() );
        values.put( REMOTE_PATH, syncedFolder.getRemoteFolder() );
        values.put( LAST_ETAG, syncedFolder.getLastEtag() );
        values.put( LOCAL_LAST_MODIFIED, syncedFolder.getLastEtag() );
        values.put( LOCAL_LAST_MODIFIED, syncedFolder.getLastModified() );
        values.put( SCANLOCAL, syncedFolder.isScanLocal() ? 1 : 0 );
        values.put( SCANREMOTE, syncedFolder.isScanRemote() ? 1 : 0 );
        values.put( ENABLED, syncedFolder.isEnabled() ? 1 : 0 );