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;
if (config.LiveTvGuideProviderType.toLowerCase() == type.toLowerCase()) {
if ((config.LiveTvGuideProviderType || '').toLowerCase() == type.toLowerCase()) {
if (config.LiveTvGuideProviderId) {
providerId = config.LiveTvGuideProviderId;
}

View File

@ -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();