diff --git a/app/src/main/java/org/thoughtcrime/securesms/util/AvatarUtil.java b/app/src/main/java/org/thoughtcrime/securesms/util/AvatarUtil.java index cab548580f..d7b43caa1f 100644 --- a/app/src/main/java/org/thoughtcrime/securesms/util/AvatarUtil.java +++ b/app/src/main/java/org/thoughtcrime/securesms/util/AvatarUtil.java @@ -113,7 +113,7 @@ public final class AvatarUtil { } return Icon.createWithAdaptiveBitmap(glideRequest.submit().get()); } catch (ExecutionException | InterruptedException e) { - throw new AssertionError("This call should not fail."); + throw new AssertionError("This call should not fail.", e); } } @@ -126,7 +126,7 @@ public final class AvatarUtil { } return IconCompat.createWithAdaptiveBitmap(glideRequest.submit().get()); } catch (ExecutionException | InterruptedException e) { - throw new AssertionError("This call should not fail."); + throw new AssertionError("This call should not fail.", e); } }