From a4d2101f54d1c7c4e2abc6c5362e3f09d938f23b Mon Sep 17 00:00:00 2001 From: LucasGGamerM Date: Fri, 20 Jan 2023 22:12:24 -0300 Subject: [PATCH] a little less broken --- .../java/org/joinmastodon/android/PushNotificationReceiver.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mastodon/src/main/java/org/joinmastodon/android/PushNotificationReceiver.java b/mastodon/src/main/java/org/joinmastodon/android/PushNotificationReceiver.java index ab56d9333..baf75547d 100644 --- a/mastodon/src/main/java/org/joinmastodon/android/PushNotificationReceiver.java +++ b/mastodon/src/main/java/org/joinmastodon/android/PushNotificationReceiver.java @@ -194,7 +194,7 @@ public class PushNotificationReceiver extends BroadcastReceiver{ notificationId++; // nm.notify(accountID, GlobalUserPreferences.keepOnlyLatestNotification ? NOTIFICATION_ID : notificationId, builder.build()); nm.notify(accountID, GlobalUserPreferences.keepOnlyLatestNotification ? NOTIFICATION_ID : notificationId, builder.build()); - nm.notify(SUMMARY_ID, summaryNotification.build()); + nm.notify(Integer.parseInt(accountID), summaryNotification.build()); } }