Skip to content
This repository has been archived by the owner on Oct 26, 2024. It is now read-only.

Commit

Permalink
fix(YouTube - Minimized playback): Fix pip incorrectly showing if app…
Browse files Browse the repository at this point in the history
… is minimized immediately after opening a Short
  • Loading branch information
LisoUseInAIKyrios committed Oct 14, 2023
1 parent cc3c9e7 commit 7d02774
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
public class MinimizedPlaybackPatch {

public static boolean isPlaybackNotShort() {
return !PlayerType.getCurrent().isNoneOrHidden();
return !PlayerType.getCurrent().isNoneHiddenOrSlidingMinimized();
}

public static boolean overrideMinimizedPlaybackAvailable() {
Expand Down

0 comments on commit 7d02774

Please sign in to comment.