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: Master Stream"); } } else if (live_dj_on_air) { - $('#current').html("Current: "+showName+" - Live Stream"); + if (showName) { + $('#current').html("Current: "+showName+" - Live Stream"); + } else { + $('#current').html("Current: Live Stream"); + } } else { $('#current').html("Current: Nothing Scheduled"); }