Only schedule a reminder if it's an alerting notification.

// FREEBIE
This commit is contained in:
Moxie Marlinspike 2015-09-09 16:51:55 -07:00
parent c418ca1890
commit 16e258bdbc

View File

@ -174,7 +174,10 @@ public class MessageNotifier {
}
updateBadge(context, notificationState.getMessageCount());
if (signal) {
scheduleReminder(context, reminderCount);
}
} finally {
if (telcoCursor != null) telcoCursor.close();
if (pushCursor != null) pushCursor.close();