From 582c05a192a0ea8680f82ee01029a3f8ab8a5a43 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 22 Mar 2011 13:39:01 -0400 Subject: [PATCH] CC-2077: Show is marked as Recording, when it's not set to record -Fixed --- public/js/playlist/playlist.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/playlist/playlist.js b/public/js/playlist/playlist.js index 82f277d1c..98b227381 100644 --- a/public/js/playlist/playlist.js +++ b/public/js/playlist/playlist.js @@ -169,7 +169,7 @@ function updatePlaybar(){ $('#playlist').text(currentShow[0].name); var recElem = $('.recording-show'); - currentShow[0].record ? recElem.show(): recElem.hide(); + (currentShow[0].record == "1") ? recElem.show(): recElem.hide(); } $('#show-length').empty();