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

add movie metadata support to live tv

This commit is contained in:
Luke Pulverenti 2015-03-14 16:00:32 -04:00
parent d82b5e81ed
commit e46774b7e9
3 changed files with 13 additions and 7 deletions

View file

@ -14,9 +14,7 @@
$('#selectGuideDays', page).val(config.GuideDays || '').selectmenu('refresh');
var serviceOptions = liveTvInfo.Services.map(function (s) {
return '<option value="' + s.Name + '">' + s.Name + '</option>';
});
$('#chkMovies', page).checked(config.EnableMovieProviders).checkboxradio("refresh");
Dashboard.hideLoadingMsg();
}
@ -49,8 +47,8 @@
ApiClient.getNamedConfiguration("livetv").done(function (config) {
config.GuideDays = $('#selectGuideDays', form).val() || null;
config.EnableMovieProviders = $('#chkMovies', form).checked();
ApiClient.updateNamedConfiguration("livetv", config).done(Dashboard.processServerConfigurationUpdateResult);
});