From ec525bde6dffb859189c2ae931a62881b4c24f16 Mon Sep 17 00:00:00 2001 From: sk Date: Mon, 16 Jan 2023 18:32:42 +0100 Subject: [PATCH] fix clearing notifications closes sk22#292 --- .../org/joinmastodon/android/fragments/HomeFragment.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/mastodon/src/main/java/org/joinmastodon/android/fragments/HomeFragment.java b/mastodon/src/main/java/org/joinmastodon/android/fragments/HomeFragment.java index 479903e10..7ecee30f3 100644 --- a/mastodon/src/main/java/org/joinmastodon/android/fragments/HomeFragment.java +++ b/mastodon/src/main/java/org/joinmastodon/android/fragments/HomeFragment.java @@ -5,6 +5,7 @@ import android.app.NotificationManager; import android.graphics.Outline; import android.os.Build; import android.os.Bundle; +import android.service.notification.StatusBarNotification; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; @@ -221,7 +222,11 @@ public class HomeFragment extends AppKitFragment implements OnBackPressedListene ((NotificationsFragment) newFragment).loadData(); // TODO make an interface? NotificationManager nm=getActivity().getSystemService(NotificationManager.class); - nm.cancel(accountID, PushNotificationReceiver.NOTIFICATION_ID); + for (StatusBarNotification notification : nm.getActiveNotifications()) { + if (accountID.equals(notification.getTag())) { + nm.cancel(accountID, notification.getId()); + } + } } }