diff --git a/src/components/appRouter.js b/src/components/appRouter.js index aa869b7cc6..62ba350ed8 100644 --- a/src/components/appRouter.js +++ b/src/components/appRouter.js @@ -797,6 +797,10 @@ class AppRouter { return '#!/list.html?type=Programs&IsAiring=true&serverId=' + options.serverId; } + if (options.section === 'channels') { + return '#!/livetv.html?tab=2&serverId=' + options.serverId; + } + if (options.section === 'dvrschedule') { return '#!/livetv.html?tab=4&serverId=' + options.serverId; } diff --git a/src/components/homesections/homesections.js b/src/components/homesections/homesections.js index 0eb773bd42..94f0e2d3aa 100644 --- a/src/components/homesections/homesections.js +++ b/src/components/homesections/homesections.js @@ -532,6 +532,11 @@ import ServerConnections from '../ServerConnections'; section: 'guide' }) + '" class="raised">' + globalize.translate('Guide') + ''; + html += '' + globalize.translate('Channels') + ''; + html += '' + globalize.translate('Recordings') + '';