Fix opening directly fullscreen on tablets

This commit is contained in:
Stypox 2021-03-28 12:03:33 +02:00
parent 2dfe837c35
commit c6316abbce
No known key found for this signature in database
GPG key ID: 4BDF1B40A49FDD23
3 changed files with 19 additions and 10 deletions

View file

@ -366,15 +366,7 @@ public final class NavigationHelper {
if (switchingPlayers) {
// Situation when user switches from players to main player. All needed data is
// here, we can start watching (assuming newQueue equals playQueue).
// Starting directly in fullscreen if the previous player type was popup.
if (playerType == MainPlayer.PlayerType.POPUP
&& !DeviceUtils.isLandscape(context)
&& PlayerHelper.globalScreenOrientationLocked(context)) {
detailFragment.onScreenRotationButtonClicked();
}
// pass false to directlyFullscreenIfApplicable since that's handled just above here
detailFragment.openVideoPlayer(false);
detailFragment.openVideoPlayer(true);
} else {
detailFragment.selectAndLoadVideo(serviceId, url, title, playQueue);
}