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()); } }