summaryrefslogtreecommitdiff
path: root/core/src/main
diff options
context:
space:
mode:
authorByteHamster <ByteHamster@users.noreply.github.com>2023-09-08 22:05:19 +0200
committerGitHub <noreply@github.com>2023-09-08 22:05:19 +0200
commitce7cffdbf3fd3f10bbeb63fa4b0ec7b525b68171 (patch)
tree1535252ea82cb1a4419e1c41972ed66b78fab5be /core/src/main
parentb7491e5e710ff2649ea45032e5b96e8f85a2dc58 (diff)
downloadAntennaPod-ce7cffdbf3fd3f10bbeb63fa4b0ec7b525b68171.zip
Open inbox instead of 'all' from new episodes notification (#6624)
Diffstat (limited to 'core/src/main')
-rw-r--r--core/src/main/java/de/danoeh/antennapod/core/service/download/NewEpisodesNotification.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/java/de/danoeh/antennapod/core/service/download/NewEpisodesNotification.java b/core/src/main/java/de/danoeh/antennapod/core/service/download/NewEpisodesNotification.java
index c0cf9e077..01038435d 100644
--- a/core/src/main/java/de/danoeh/antennapod/core/service/download/NewEpisodesNotification.java
+++ b/core/src/main/java/de/danoeh/antennapod/core/service/download/NewEpisodesNotification.java
@@ -94,7 +94,7 @@ public class NewEpisodesNotification {
intent.setAction("NewEpisodes");
intent.setComponent(new ComponentName(context, "de.danoeh.antennapod.activity.MainActivity"));
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
- intent.putExtra("fragment_tag", "EpisodesFragment");
+ intent.putExtra("fragment_tag", "NewEpisodesFragment");
PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent,
(Build.VERSION.SDK_INT >= 23 ? PendingIntent.FLAG_IMMUTABLE : 0));