From 2f3bfb3e74ce4977a5971e7414ecd727e97ec7b4 Mon Sep 17 00:00:00 2001 From: sk Date: Mon, 16 Jan 2023 14:32:42 -0300 Subject: [PATCH] fix clearing notifications closes sk22#292 --- .../java/org/joinmastodon/android/fragments/HomeFragment.java | 2 +- 1 file changed, 1 insertion(+), 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 2eb4322af..856592905 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; @@ -271,7 +272,6 @@ 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());