From cb300724dafabd523baa01321af9c51c7be99dc1 Mon Sep 17 00:00:00 2001 From: "Cody T.-H. Chiu" Date: Tue, 12 Nov 2024 18:16:32 +1300 Subject: [PATCH] Remove history dialog override so clicking "Start playing in the background" would only enqueue the current item instead of the full history which is usually massive --- .../newpipe/local/history/StatisticsPlaylistFragment.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/app/src/main/java/org/schabi/newpipe/local/history/StatisticsPlaylistFragment.java b/app/src/main/java/org/schabi/newpipe/local/history/StatisticsPlaylistFragment.java index fac358075..3302e387e 100644 --- a/app/src/main/java/org/schabi/newpipe/local/history/StatisticsPlaylistFragment.java +++ b/app/src/main/java/org/schabi/newpipe/local/history/StatisticsPlaylistFragment.java @@ -332,10 +332,6 @@ public class StatisticsPlaylistFragment StreamDialogDefaultEntry.DELETE, (f, i) -> deleteEntry( Math.max(itemListAdapter.getItemsList().indexOf(item), 0))) - .setAction( - StreamDialogDefaultEntry.START_HERE_ON_BACKGROUND, - (f, i) -> NavigationHelper.playOnBackgroundPlayer( - context, getPlayQueueStartingAt(item), true)) .create() .show(); } catch (final IllegalArgumentException e) {