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();