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

-semi-fixed
This commit is contained in:
denise 2012-04-16 10:51:12 -04:00
parent 7659ae6384
commit fffaac726c
1 changed files with 2 additions and 2 deletions

View File

@ -149,9 +149,9 @@ function updatePlaybar(){
$('#current').text(currentSong.name+",");
}else{
if (master_dj_on_air) {
$('#current').html("Current: <span style='color:red; font-weight:bold'>Master DJ On Air</span>");
$('#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'>Live DJ On Air</span>");
$('#current').html("Current: <span style='color:red; font-weight:bold'>"+currentShow.name+"</span>");
} else {
$('#current').html("Current: <span style='color:red; font-weight:bold'>Nothing Scheduled</span>");
}