Notify on incoming messages when locked.

// FREEBIE

Fixes #2149
This commit is contained in:
Moxie Marlinspike 2014-12-04 15:49:09 -08:00
parent 9d693eef30
commit 978f769d6d
2 changed files with 2 additions and 2 deletions

View File

@ -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);
}
}

View File

@ -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);
}
}