mirror of
https://github.com/p-stream/p-stream.git
synced 2026-04-21 10:32:18 +00:00
fix pip button not displaying on mobile
This commit is contained in:
parent
7606c1eebb
commit
35312114be
1 changed files with 1 additions and 1 deletions
|
|
@ -193,7 +193,7 @@ export function PlayerPart(props: PlayerPartProps) {
|
||||||
<div />
|
<div />
|
||||||
<div className="flex justify-center space-x-3">
|
<div className="flex justify-center space-x-3">
|
||||||
{/* Disable PiP for iOS PWA */}
|
{/* Disable PiP for iOS PWA */}
|
||||||
{!isPWA && !isIOS && status === playerStatus.PLAYING && (
|
{!(isPWA && isIOS) && status === playerStatus.PLAYING && (
|
||||||
<Player.Pip />
|
<Player.Pip />
|
||||||
)}
|
)}
|
||||||
<Player.Episodes inControl={inControl} />
|
<Player.Episodes inControl={inControl} />
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue