From f9711a3402b7dbe0d3df9c0b606d0fd0ab5b399a Mon Sep 17 00:00:00 2001 From: Thompson3142 Date: Sun, 24 Nov 2024 22:12:25 +0100 Subject: [PATCH] Removed call to setRecovery() entirely --- app/src/main/java/org/schabi/newpipe/player/Player.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/src/main/java/org/schabi/newpipe/player/Player.java b/app/src/main/java/org/schabi/newpipe/player/Player.java index 110a34e1b52..920435a7e3b 100644 --- a/app/src/main/java/org/schabi/newpipe/player/Player.java +++ b/app/src/main/java/org/schabi/newpipe/player/Player.java @@ -462,9 +462,6 @@ public void handleIntent(@NonNull final Intent intent) { if (oldPlayerType != playerType && playQueue != null) { // If playerType changes from one to another we should reload the player // (to disable/enable video stream or to set quality) - if (playerType != PlayerType.POPUP) { - setRecovery(); - } reloadPlayQueueManager(); }