From 109e61ec6586321aeffb6d46834b996edf6744a5 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Mon, 31 Aug 2015 01:30:38 -0400 Subject: [PATCH] display current program info --- dashboard-ui/scripts/librarybrowser.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dashboard-ui/scripts/librarybrowser.js b/dashboard-ui/scripts/librarybrowser.js index 3099cb1d56..eb56544350 100644 --- a/dashboard-ui/scripts/librarybrowser.js +++ b/dashboard-ui/scripts/librarybrowser.js @@ -1153,6 +1153,12 @@ else if (item.Type == 'MusicArtist') { textlines.push(' '); } + else if (item.Type == 'TvChannel') { + + if (item.CurrentProgram) { + textlines.push(LibraryBrowser.getPosterViewDisplayName(item.CurrentProgram)); + } + } else { textlines.push(LibraryBrowser.getMiscInfoHtml(item)); }