diff --git a/public/js/client.js b/public/js/client.js index ab33e02b..29a3b741 100644 --- a/public/js/client.js +++ b/public/js/client.js @@ -131,7 +131,7 @@ console.log('LOCAL_STORAGE_SETTINGS', lsSettings); const isEmbedded = window.self !== window.top; // Check if PIP is supported by this browser -const showVideoPipBtn = document.pictureInPictureEnabled; +const showVideoPipBtn = !isMobileDevice && document.pictureInPictureEnabled; // Check if Document PIP is supported by this browser const showDocumentPipBtn = !isEmbedded && 'documentPictureInPicture' in window;