Fix wallpaper backup eligibility test am: f7d1b5de6e

am: 100b610066

Change-Id: I243b821aa35b75ad69ed9ddcf45ef6a4342e4605
This commit is contained in:
Christopher Tate
2016-08-23 15:25:06 +00:00
committed by android-build-merger

View File

@@ -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;
}