From 3ddabf5cf7b6702757dc867c7ea546efb25e5980 Mon Sep 17 00:00:00 2001 From: denise Date: Mon, 16 Apr 2012 17:53:51 -0400 Subject: [PATCH] CC-3637: Now playing shows "Nothing Scheduled" when restreaming external source -fixed --- airtime_mvc/public/js/airtime/dashboard/playlist.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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"); }