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

Enable TV Support for 'Ask to Skip' (#6295)

This commit is contained in:
viown 2024-12-29 22:21:06 +03:00 committed by GitHub
parent 92e8821003
commit 26df03b64c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 46 additions and 33 deletions

View file

@ -1237,8 +1237,10 @@ export default function (view) {
}
return;
case 'Enter':
playbackManager.playPause(currentPlayer);
showOsd(btnPlayPause);
if (e.target.tagName !== 'BUTTON') {
playbackManager.playPause(currentPlayer);
showOsd(btnPlayPause);
}
return;
}
}