diff --git a/src/webui/www/public/scripts/client.js b/src/webui/www/public/scripts/client.js index 69a931c1a..12022887e 100644 --- a/src/webui/www/public/scripts/client.js +++ b/src/webui/www/public/scripts/client.js @@ -184,7 +184,7 @@ window.addEvent('load', function () { var addTorrentToCategoryList = function(torrent) { var category = torrent['category']; - if (category === null) + if (typeof category === 'undefined') return false; if (category.length === 0) { // Empty category removeTorrentFromCategoryList(torrent['hash']);