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

Commit fbee390c authored by Christopher Tate's avatar Christopher Tate Committed by android-build-merger
Browse files

Handle empty/unspecified crop properly in wallpaper restore am: dd7110db

am: 2ba91274

Change-Id: I7644603b3ff7dcbd0c9b43cc170da19172949d15
parents ecab26e4 2ba91274
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -238,7 +238,7 @@ public class WallpaperBackupAgent extends BackupAgent {
                    Slog.v(TAG, "Restored crop hint " + cropHint);
                }
                try (FileInputStream in = new FileInputStream(stage)) {
                    mWm.setStream(in, cropHint, true, which);
                    mWm.setStream(in, cropHint.isEmpty() ? null : cropHint, true, which);
                } finally {} // auto-closes 'in'
            }
        }