Report total number of new messages

This commit is contained in:
M66B 2021-04-08 08:03:06 +02:00
parent c66dc907fe
commit 3d632fd900
1 changed files with 4 additions and 4 deletions

View File

@ -4005,7 +4005,7 @@ class Core {
// Build notifications // Build notifications
List<NotificationCompat.Builder> notifications = getNotificationUnseen(context, List<NotificationCompat.Builder> notifications = getNotificationUnseen(context,
group, groupMessages.get(group), group, groupMessages.get(group),
notify_summary, current - prev, notify_summary, current - prev, current,
redacted); redacted);
Log.i("Notify group=" + group + Log.i("Notify group=" + group +
@ -4069,7 +4069,7 @@ class Core {
private static List<NotificationCompat.Builder> getNotificationUnseen( private static List<NotificationCompat.Builder> getNotificationUnseen(
Context context, Context context,
long group, List<TupleMessageEx> messages, long group, List<TupleMessageEx> messages,
boolean notify_summary, int new_messages, boolean redacted) { boolean notify_summary, int new_messages, int total_messages, boolean redacted) {
List<NotificationCompat.Builder> notifications = new ArrayList<>(); List<NotificationCompat.Builder> notifications = new ArrayList<>();
// Android 7+ N https://developer.android.com/training/notify-user/group // Android 7+ N https://developer.android.com/training/notify-user/group
@ -4160,7 +4160,7 @@ class Core {
// Build title // Build title
String title = context.getResources().getQuantityString( String title = context.getResources().getQuantityString(
R.plurals.title_notification_unseen, messages.size(), messages.size()); R.plurals.title_notification_unseen, total_messages, total_messages);
long cgroup = (group >= 0 long cgroup = (group >= 0
? group ? group
@ -4174,7 +4174,7 @@ class Core {
: R.drawable.baseline_mail_white_24) : R.drawable.baseline_mail_white_24)
.setContentTitle(title) .setContentTitle(title)
.setContentIntent(piContent) .setContentIntent(piContent)
.setNumber(messages.size()) .setNumber(total_messages)
.setDeleteIntent(piClear) .setDeleteIntent(piClear)
.setPriority(NotificationCompat.PRIORITY_DEFAULT) .setPriority(NotificationCompat.PRIORITY_DEFAULT)
.setCategory(notify_summary .setCategory(notify_summary