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: I01089fe6006c94208191efec9833ea8d42d39769
This commit is contained in:
@@ -124,6 +124,9 @@ public class NotificationInlineImageResolver implements ImageResolver {
|
|||||||
*/
|
*/
|
||||||
Drawable resolveImage(Uri uri) throws IOException {
|
Drawable resolveImage(Uri uri) throws IOException {
|
||||||
BitmapDrawable image = resolveImageInternal(uri);
|
BitmapDrawable image = resolveImageInternal(uri);
|
||||||
|
if (image == null || image.getBitmap() == null) {
|
||||||
|
throw new IOException("resolveImageInternal returned null for uri: " + uri);
|
||||||
|
}
|
||||||
Bitmap bitmap = image.getBitmap();
|
Bitmap bitmap = image.getBitmap();
|
||||||
image.setBitmap(Icon.scaleDownIfNecessary(bitmap, mMaxImageWidth, mMaxImageHeight));
|
image.setBitmap(Icon.scaleDownIfNecessary(bitmap, mMaxImageWidth, mMaxImageHeight));
|
||||||
return image;
|
return image;
|
||||||
|
|||||||
Reference in New Issue
Block a user