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

Commit f7d1b5de authored by Christopher Tate's avatar Christopher Tate
Browse files

Fix wallpaper backup eligibility test

Bug 30970354
Bug 30938483

Change-Id: I3c933a80505238897ceb8e89c228ed48ee5a9d0e
parent c02c6b8f
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;
    }