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

update startup wizard

This commit is contained in:
Luke Pulverenti 2015-08-22 14:09:02 -04:00
parent 584ee68dc4
commit b91250950f
2 changed files with 2 additions and 2 deletions

View file

@ -12,7 +12,7 @@
var providerId = null; var providerId = null;
if (config.LiveTvGuideProviderType.toLowerCase() == type.toLowerCase()) { if ((config.LiveTvGuideProviderType || '').toLowerCase() == type.toLowerCase()) {
if (config.LiveTvGuideProviderId) { if (config.LiveTvGuideProviderId) {
providerId = config.LiveTvGuideProviderId; providerId = config.LiveTvGuideProviderId;
} }

View file

@ -35,7 +35,7 @@
apiClient.getJSON(apiClient.getUrl('Startup/Configuration')).done(function (config) { 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 || ''; page.querySelector('.txtDevicePath').value = config.LiveTvTunerPath || '';
Dashboard.hideLoadingMsg(); Dashboard.hideLoadingMsg();