Merge "Throw IOE from within resolveImage rather than NPE." into rvc-dev am: 36060929b4
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/12036439 Change-Id: I5bb67c8133e5b5884b671b65238391267972bd45
This commit is contained in:
@@ -124,6 +124,9 @@ public class NotificationInlineImageResolver implements ImageResolver {
|
||||
*/
|
||||
Drawable resolveImage(Uri uri) throws IOException {
|
||||
BitmapDrawable image = resolveImageInternal(uri);
|
||||
if (image == null || image.getBitmap() == null) {
|
||||
throw new IOException("resolveImageInternal returned null for uri: " + uri);
|
||||
}
|
||||
Bitmap bitmap = image.getBitmap();
|
||||
image.setBitmap(Icon.scaleDownIfNecessary(bitmap, mMaxImageWidth, mMaxImageHeight));
|
||||
return image;
|
||||
|
||||
Reference in New Issue
Block a user