diff --git a/src/org/thoughtcrime/securesms/notifications/SingleRecipientNotificationBuilder.java b/src/org/thoughtcrime/securesms/notifications/SingleRecipientNotificationBuilder.java index 4a88f979f0..4567832334 100644 --- a/src/org/thoughtcrime/securesms/notifications/SingleRecipientNotificationBuilder.java +++ b/src/org/thoughtcrime/securesms/notifications/SingleRecipientNotificationBuilder.java @@ -254,7 +254,8 @@ public class SingleRecipientNotificationBuilder extends AbstractNotificationBuil .submit(500, 500) .get(); } catch (InterruptedException | ExecutionException e) { - throw new AssertionError(e); + Log.w(TAG, e); + return Bitmap.createBitmap(500, 500, Bitmap.Config.RGB_565); } }