Revert "Fix notification badge display."

This reverts commit caf93b9203.
fork-5.53.8
Greyson Parrelli 2018-12-06 12:14:32 -08:00
rodzic 053f071f41
commit 2489ea0d5b
1 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -307,6 +307,7 @@ public class MessageNotifier {
builder.setGroup(NOTIFICATION_GROUP);
builder.setDeleteIntent(notificationState.getDeleteIntent(context));
builder.setOnlyAlertOnce(!signal);
builder.setGroupAlertBehavior(NotificationCompat.GROUP_ALERT_SUMMARY);
long timestamp = notifications.get(0).getTimestamp();
if (timestamp != 0) builder.setWhen(timestamp);
@ -331,8 +332,8 @@ public class MessageNotifier {
notifications.get(0).getText());
}
if (bundled) {
builder.setGroupAlertBehavior(NotificationCompat.GROUP_ALERT_SUMMARY);
if (!bundled) {
builder.setGroupSummary(true);
}
NotificationManagerCompat.from(context).notify(notificationId, builder.build());