mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
restored live tv playback in the web client
This commit is contained in:
parent
121107918d
commit
7dd0efdcc2
11 changed files with 197 additions and 63 deletions
|
@ -29,21 +29,15 @@
|
|||
|
||||
var selectmenu = $('#selectVersion', page).html(html);
|
||||
|
||||
var packageVersion;
|
||||
|
||||
if (!installedPlugin) {
|
||||
|
||||
$('#pCurrentVersion', page).hide().html("");
|
||||
}
|
||||
|
||||
// If we don't have a package version to select, pick the first release build
|
||||
if (!packageVersion) {
|
||||
var packageVersion = packageInfo.versions.filter(function (current) {
|
||||
|
||||
packageVersion = packageInfo.versions.filter(function (current) {
|
||||
|
||||
return current.classification == "Release";
|
||||
})[0];
|
||||
}
|
||||
return current.classification == "Release";
|
||||
})[0];
|
||||
|
||||
// If we still don't have a package version to select, pick the first Beta build
|
||||
if (!packageVersion) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue