CC-2077: Show is marked as Recording, when it's not set to record

-Fixed
This commit is contained in:
martin 2011-03-22 13:39:01 -04:00
parent 730df4c345
commit 582c05a192
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@ function updatePlaybar(){
$('#playlist').text(currentShow[0].name); $('#playlist').text(currentShow[0].name);
var recElem = $('.recording-show'); var recElem = $('.recording-show');
currentShow[0].record ? recElem.show(): recElem.hide(); (currentShow[0].record == "1") ? recElem.show(): recElem.hide();
} }
$('#show-length').empty(); $('#show-length').empty();