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
|
@ -986,8 +986,9 @@
|
|||
|
||||
if (browser.msie) {
|
||||
|
||||
if (!window.MediaSource || !mediaSource.RunTimeTicks) {
|
||||
if (window.MediaSource == null || mediaSource.RunTimeTicks == null) {
|
||||
alert('Playback of this content is not supported in Internet Explorer. For a better experience, please try a modern browser such as Google Chrome, Firefox, Opera, or Microsoft Edge.');
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1021,7 +1022,7 @@
|
|||
Dashboard.hideLoadingMsg();
|
||||
streamInfo.url = hlsPlaylistUrl;
|
||||
|
||||
onReadyToPlay();
|
||||
setTimeout(onReadyToPlay, 0);
|
||||
|
||||
}, function () {
|
||||
Dashboard.hideLoadingMsg();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue