Notify per group

This commit is contained in:
M66B 2019-07-10 18:33:25 +02:00
parent 0b29f443f9
commit 955c997736
1 changed files with 3 additions and 3 deletions

View File

@ -1870,13 +1870,13 @@ class Core {
" added=" + add.size() + " removed=" + remove.size());
if (notifications.size() == 0) {
String tag = "unseen.0";
String tag = "unseen." + group + "." + 0;
Log.i("Notify cancel tag=" + tag);
nm.cancel(tag, 1);
}
for (Long id : remove) {
String tag = "unseen." + Math.abs(id);
String tag = "unseen." + group + "." + Math.abs(id);
Log.i("Notify cancel tag=" + tag);
nm.cancel(tag, 1);
}
@ -1884,7 +1884,7 @@ class Core {
for (Notification notification : notifications) {
long id = notification.extras.getLong("id", 0);
if ((id == 0 && add.size() + remove.size() > 0) || add.contains(id)) {
String tag = "unseen." + Math.abs(id);
String tag = "unseen." + group + "." + Math.abs(id);
Log.i("Notifying tag=" + tag +
(Build.VERSION.SDK_INT < Build.VERSION_CODES.O ? "" : " channel=" + notification.getChannelId()));
nm.notify(tag, 1, notification);