diff --git a/src/org/thoughtcrime/securesms/jobs/PushDecryptJob.java b/src/org/thoughtcrime/securesms/jobs/PushDecryptJob.java index fae163f860..5d95f88ccb 100644 --- a/src/org/thoughtcrime/securesms/jobs/PushDecryptJob.java +++ b/src/org/thoughtcrime/securesms/jobs/PushDecryptJob.java @@ -64,7 +64,7 @@ public class PushDecryptJob extends MasterSecretJob { @Override public void onAdded() { if (KeyCachingService.getMasterSecret(context) == null) { - MessageNotifier.updateNotification(context, null); + MessageNotifier.updateNotification(context, null, -2); } } diff --git a/src/org/thoughtcrime/securesms/jobs/SmsDecryptJob.java b/src/org/thoughtcrime/securesms/jobs/SmsDecryptJob.java index bd8f343654..e22905a15b 100644 --- a/src/org/thoughtcrime/securesms/jobs/SmsDecryptJob.java +++ b/src/org/thoughtcrime/securesms/jobs/SmsDecryptJob.java @@ -56,7 +56,7 @@ public class SmsDecryptJob extends MasterSecretJob { @Override public void onAdded() { if (KeyCachingService.getMasterSecret(context) == null) { - MessageNotifier.updateNotification(context, null); + MessageNotifier.updateNotification(context, null, -2); } }