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

Commit c298b169 authored by Joe LaPenna's avatar Joe LaPenna
Browse files

Downgrade WallpaperManagerService error

BUG: 28530212

Change-Id: I35f0f1b1e7241939cb3a2f27dbb5da7f231c0b35
parent d96c51e4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -332,7 +332,7 @@ public class WallpaperManagerService extends IWallpaperManager.Stub {
        options.inJustDecodeBounds = true;
        BitmapFactory.decodeFile(wallpaper.wallpaperFile.getAbsolutePath(), options);
        if (options.outWidth <= 0 || options.outHeight <= 0) {
            Slog.e(TAG, "Invalid wallpaper data");
            Slog.w(TAG, "Invalid wallpaper data");
            success = false;
        } else {
            boolean needCrop = false;