diff --git a/dashboard-ui/livetvsuggested.html b/dashboard-ui/livetv.html similarity index 94% rename from dashboard-ui/livetvsuggested.html rename to dashboard-ui/livetv.html index 6310c4eb86..3ca74689a4 100644 --- a/dashboard-ui/livetvsuggested.html +++ b/dashboard-ui/livetv.html @@ -16,12 +16,12 @@ ${TabSeries} diff --git a/dashboard-ui/scripts/librarybrowser.js b/dashboard-ui/scripts/librarybrowser.js index 32031c819f..d0c417762c 100644 --- a/dashboard-ui/scripts/librarybrowser.js +++ b/dashboard-ui/scripts/librarybrowser.js @@ -745,7 +745,7 @@ var id = item.Id || item.ItemId; if (item.CollectionType == 'livetv') { - return 'livetvsuggested.html'; + return 'livetv.html'; } if (item.CollectionType == 'channels') { diff --git a/dashboard-ui/scripts/livetvnewrecording.js b/dashboard-ui/scripts/livetvnewrecording.js index bb67f103d2..a3725c36a2 100644 --- a/dashboard-ui/scripts/livetvnewrecording.js +++ b/dashboard-ui/scripts/livetvnewrecording.js @@ -126,7 +126,7 @@ ApiClient.createLiveTvSeriesTimer(item).done(function () { Dashboard.hideLoadingMsg(); - Dashboard.navigate('livetvsuggested.html'); + Dashboard.navigate('livetv.html'); }); @@ -134,7 +134,7 @@ ApiClient.createLiveTvTimer(item).done(function () { Dashboard.hideLoadingMsg(); - Dashboard.navigate('livetvsuggested.html'); + Dashboard.navigate('livetv.html'); }); } diff --git a/dashboard-ui/scripts/livetvsuggested.js b/dashboard-ui/scripts/livetvsuggested.js index eb578a5f4e..a843403bff 100644 --- a/dashboard-ui/scripts/livetvsuggested.js +++ b/dashboard-ui/scripts/livetvsuggested.js @@ -153,9 +153,9 @@ if (LibraryBrowser.navigateOnLibraryTabSelect()) { if (selected) { - Dashboard.navigate('livetvsuggested.html?tab=' + selected); + Dashboard.navigate('livetv.html?tab=' + selected); } else { - Dashboard.navigate('livetvsuggested.html'); + Dashboard.navigate('livetv.html'); } } else { diff --git a/dashboard-ui/scripts/livetvtimer.js b/dashboard-ui/scripts/livetvtimer.js index 37ad1a7684..51d5da7790 100644 --- a/dashboard-ui/scripts/livetvtimer.js +++ b/dashboard-ui/scripts/livetvtimer.js @@ -14,7 +14,7 @@ Dashboard.alert(Globalize.translate('MessageRecordingCancelled')); - Dashboard.navigate('livetvsuggested.html'); + Dashboard.navigate('livetv.html'); }); } diff --git a/dashboard-ui/voice/voice.js b/dashboard-ui/voice/voice.js index 8d9a761364..e78baa1cf0 100644 --- a/dashboard-ui/voice/voice.js +++ b/dashboard-ui/voice/voice.js @@ -341,12 +341,12 @@ function showCommand(result) { if (result.category == 'tvguide') { - Dashboard.navigate('livetvsuggested.html'); + Dashboard.navigate('livetv.html'); return; } if (result.category == 'recordings') { - Dashboard.navigate('livetvsuggested.html'); + Dashboard.navigate('livetv.html'); return; } }