mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 19:08:18 -07:00
update startup wizard
This commit is contained in:
parent
584ee68dc4
commit
b91250950f
@ -12,7 +12,7 @@
|
||||
|
||||
var providerId = null;
|
||||
|
||||
if (config.LiveTvGuideProviderType.toLowerCase() == type.toLowerCase()) {
|
||||
if ((config.LiveTvGuideProviderType || '').toLowerCase() == type.toLowerCase()) {
|
||||
if (config.LiveTvGuideProviderId) {
|
||||
providerId = config.LiveTvGuideProviderId;
|
||||
}
|
||||
|
@ -35,7 +35,7 @@
|
||||
|
||||
apiClient.getJSON(apiClient.getUrl('Startup/Configuration')).done(function (config) {
|
||||
|
||||
$('#selectTunerType', page).val(config.LiveTvTunerType || '').selectmenu("refresh");
|
||||
$('#selectTunerType', page).val(config.LiveTvTunerType || 'hdhomerun').selectmenu("refresh");
|
||||
page.querySelector('.txtDevicePath').value = config.LiveTvTunerPath || '';
|
||||
|
||||
Dashboard.hideLoadingMsg();
|
||||
|
Loading…
Reference in New Issue
Block a user