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

updated nuget

This commit is contained in:
Luke Pulverenti 2014-05-17 14:37:40 -04:00
parent f7e9566f8f
commit 2cae955857
3 changed files with 6 additions and 4 deletions

View file

@ -18,7 +18,7 @@
return '<option value="' + s.Name + '">' + s.Name + '</option>';
});
$('#selectActiveService', page).html(serviceOptions).selectmenu('refresh');
$('#selectActiveService', page).html(serviceOptions).val(config.LiveTvOptions.ActiveService || '').selectmenu('refresh');
Dashboard.hideLoadingMsg();
}
@ -53,6 +53,7 @@
config.LiveTvOptions.GuideDays = $('#selectGuideDays', form).val() || null;
config.LiveTvOptions.ActiveService = $('#selectActiveService', form).val() || null;
ApiClient.updateServerConfiguration(config).done(Dashboard.processServerConfigurationUpdateResult);
});