diff --git a/src/org/thoughtcrime/securesms/jobs/PushMediaSendJob.java b/src/org/thoughtcrime/securesms/jobs/PushMediaSendJob.java index 635a74ce0b..565ae33b4f 100644 --- a/src/org/thoughtcrime/securesms/jobs/PushMediaSendJob.java +++ b/src/org/thoughtcrime/securesms/jobs/PushMediaSendJob.java @@ -89,6 +89,8 @@ public class PushMediaSendJob extends PushSendJob implements InjectableType { @Override public boolean onShouldRetryThrowable(Exception exception) { if (exception instanceof RequirementNotMetException) return true; + if (exception instanceof RetryLaterException) return true; + return false; }