mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
add movie resolver fix
This commit is contained in:
parent
c23547137d
commit
50dc5c4d1b
13 changed files with 398 additions and 25 deletions
|
@ -233,7 +233,8 @@
|
|||
|
||||
var requiresNativeControls = !self.enableCustomVideoControls();
|
||||
|
||||
var poster = options.poster ? (' poster="' + options.poster + '"') : '';
|
||||
// Safari often displays the poster under the video and it doesn't look good
|
||||
var poster = !$.browser.safari && options.poster ? (' poster="' + options.poster + '"') : '';
|
||||
|
||||
// Can't autoplay in these browsers so we need to use the full controls
|
||||
if (requiresNativeControls && AppInfo.isNativeApp && $.browser.android) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue