fix pip button not displaying on mobile

This commit is contained in:
Pas 2025-11-08 14:26:25 -07:00
parent 7606c1eebb
commit 35312114be

View file

@ -193,7 +193,7 @@ export function PlayerPart(props: PlayerPartProps) {
<div />
<div className="flex justify-center space-x-3">
{/* Disable PiP for iOS PWA */}
{!isPWA && !isIOS && status === playerStatus.PLAYING && (
{!(isPWA && isIOS) && status === playerStatus.PLAYING && (
<Player.Pip />
)}
<Player.Episodes inControl={inControl} />