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

Commit 9c2895fb authored by Chris Wren's avatar Chris Wren Committed by Android Git Automerger
Browse files

am de0fc51a: am 32911d21: am 33f4c2df: first backup should save things from the beginning of time

* commit 'de0fc51a':
  first backup should save things from the beginning of time
parents 54b80a6b de0fc51a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -297,7 +297,7 @@ public class LauncherBackupHelper implements BackupHelper {
                Key key = getKey(Key.FAVORITE, id);
                keys.add(key);
                currentIds.add(keyToBackupKey(key));
                if (updateTime > in.t) {
                if (updateTime >= in.t) {
                    byte[] blob = packFavorite(cursor);
                    writeRowToBackup(key, blob, out, data);
                }
@@ -365,7 +365,7 @@ public class LauncherBackupHelper implements BackupHelper {
                Key key = getKey(Key.SCREEN, id);
                keys.add(key);
                currentIds.add(keyToBackupKey(key));
                if (updateTime > in.t) {
                if (updateTime >= in.t) {
                    byte[] blob = packScreen(cursor);
                    writeRowToBackup(key, blob, out, data);
                }