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

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

Fix wallpaper backup eligibility test am: f7d1b5de am: 100b6100 am: 6939bf0b

am: 47b14651

Change-Id: I66425f3f057434c2fbd47ca076c5bba53ad80179
parents d663cc19 47b14651
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1757,8 +1757,8 @@ public class WallpaperManagerService extends IWallpaperManager.Stub {
        }

        WallpaperData wallpaper = (which == FLAG_LOCK)
                ? mWallpaperMap.get(userId)
                : mLockWallpaperMap.get(userId);
                ? mLockWallpaperMap.get(userId)
                : mWallpaperMap.get(userId);
        return (wallpaper != null) ? wallpaper.allowBackup : false;
    }