mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
always supply SeriesTimerId
This commit is contained in:
parent
ef9ab82058
commit
85a11e81cf
16 changed files with 499 additions and 87 deletions
|
@ -184,8 +184,14 @@
|
|||
return false;
|
||||
}
|
||||
|
||||
if (MediaPlayer.canPlayNativeHls() && mediaSource.RunTimeTicks) {
|
||||
return false;
|
||||
if (MediaPlayer.canPlayNativeHls()) {
|
||||
|
||||
// simple playback should use the native support
|
||||
if (mediaSource.RunTimeTicks) {
|
||||
return false;
|
||||
}
|
||||
|
||||
//return false;
|
||||
}
|
||||
|
||||
// For now don't do this in edge because we lose some native audio support
|
||||
|
@ -193,6 +199,11 @@
|
|||
return false;
|
||||
}
|
||||
|
||||
// hls.js is only in beta. needs more testing.
|
||||
if (browser.safari) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue