From d2a728fc08df27dac91ae77e95eb632709db80ce Mon Sep 17 00:00:00 2001
From: Moxie Marlinspike <moxie@thoughtcrime.org>
Date: Tue, 21 Jul 2015 16:03:56 -0700
Subject: [PATCH] Display notification after upgrade migration w/ password.

// FREEBIE
---
 src/org/thoughtcrime/securesms/jobs/PushDecryptJob.java | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/src/org/thoughtcrime/securesms/jobs/PushDecryptJob.java b/src/org/thoughtcrime/securesms/jobs/PushDecryptJob.java
index 10b3183925..5aef986599 100644
--- a/src/org/thoughtcrime/securesms/jobs/PushDecryptJob.java
+++ b/src/org/thoughtcrime/securesms/jobs/PushDecryptJob.java
@@ -92,11 +92,7 @@ public class PushDecryptJob extends ContextJob {
   public void onRun() throws NoSuchMessageException {
     if (!IdentityKeyUtil.hasIdentityKey(context)) {
       Log.w(TAG, "Skipping job, waiting for migration...");
-
-      if (KeyCachingService.getMasterSecret(context) != null) {
-        MessageNotifier.updateNotification(context, null, true, -2);
-      }
-
+      MessageNotifier.updateNotification(context, null, true, -2);
       return;
     }