From cf891edce940d2ad9e3c9a75a1f6d4f705558277 Mon Sep 17 00:00:00 2001 From: Moxie Marlinspike Date: Fri, 17 Feb 2017 13:21:04 -0800 Subject: [PATCH] Should fix "locked message" on reminder notification issue Fixes #5782 // FREEBIE --- .../thoughtcrime/securesms/notifications/MessageNotifier.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/thoughtcrime/securesms/notifications/MessageNotifier.java b/src/org/thoughtcrime/securesms/notifications/MessageNotifier.java index 8dc15df08c..049b1e242b 100644 --- a/src/org/thoughtcrime/securesms/notifications/MessageNotifier.java +++ b/src/org/thoughtcrime/securesms/notifications/MessageNotifier.java @@ -542,7 +542,7 @@ public class MessageNotifier { protected Void doInBackground(Void... params) { MasterSecret masterSecret = KeyCachingService.getMasterSecret(context); int reminderCount = intent.getIntExtra("reminder_count", 0); - MessageNotifier.updateNotification(context, masterSecret, true, true, reminderCount + 1); + MessageNotifier.updateNotification(context, masterSecret, true, false, reminderCount + 1); return null; }