1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

fix: implement forced fullscreen hack for webos

This commit is contained in:
Kay Simons 2021-09-14 20:27:02 +02:00 committed by Kay Simons
parent 7f81f5b3f1
commit 59bb2f27a5
2 changed files with 9 additions and 5 deletions

View file

@ -403,7 +403,7 @@ import { appRouter } from '../../../components/appRouter';
}
function onFullscreenChanged() {
if (!playbackManager.isFullscreen(currentPlayer)) {
if (currentPlayer.forcedFullscreen && !playbackManager.isFullscreen(currentPlayer)) {
appRouter.back();
return;
}