CC-3637: Now playing shows "Nothing Scheduled" when restreaming external source

-fixed
This commit is contained in:
denise 2012-04-16 17:53:51 -04:00
parent 479e112317
commit 3ddabf5cf7
1 changed files with 5 additions and 1 deletions

View File

@ -157,7 +157,11 @@ function updatePlaybar(){
$('#current').html("Current: <span style='color:red; font-weight:bold'>Master Stream</span>");
}
} else if (live_dj_on_air) {
$('#current').html("Current: <span style='color:red; font-weight:bold'>"+showName+" - Live Stream</span>");
if (showName) {
$('#current').html("Current: <span style='color:red; font-weight:bold'>"+showName+" - Live Stream</span>");
} else {
$('#current').html("Current: <span style='color:red; font-weight:bold'>Live Stream</span>");
}
} else {
$('#current').html("Current: <span style='color:red; font-weight:bold'>Nothing Scheduled</span>");
}