diff --git a/airtime_mvc/public/js/airtime/dashboard/playlist.js b/airtime_mvc/public/js/airtime/dashboard/playlist.js index d48734fc3..368e776d5 100644 --- a/airtime_mvc/public/js/airtime/dashboard/playlist.js +++ b/airtime_mvc/public/js/airtime/dashboard/playlist.js @@ -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>"); }