diff --git a/dashboard-ui/scripts/livetvrecordings.js b/dashboard-ui/scripts/livetvrecordings.js index f057c635d..ad737caaf 100644 --- a/dashboard-ui/scripts/livetvrecordings.js +++ b/dashboard-ui/scripts/livetvrecordings.js @@ -55,7 +55,12 @@ html += ''; html += '' + (recording.Name || '') + ''; - html += '' + (recording.ChannelName || '') + ''; + + html += ''; + if (recording.ChannelId) { + html += '' + recording.ChannelName + ''; + } + html += ''; var startDate = recording.StartDate; diff --git a/dashboard-ui/scripts/livetvtimers.js b/dashboard-ui/scripts/livetvtimers.js index 5e9c85f76..9b266c66e 100644 --- a/dashboard-ui/scripts/livetvtimers.js +++ b/dashboard-ui/scripts/livetvtimers.js @@ -55,7 +55,12 @@ html += ''; html += '' + (timer.Name || '') + ''; - html += '' + (timer.ChannelName || '') + ''; + + html += ''; + if (timer.ChannelId) { + html += '' + timer.ChannelName + ''; + } + html += ''; var startDate = timer.StartDate;