mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-20 23:47:23 -06:00
@@ -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']);
|
||||
|
||||
@@ -1039,7 +1039,7 @@ var TorrentsTable = new Class({
|
||||
break;
|
||||
case 'inactive':
|
||||
inactive = true;
|
||||
break;
|
||||
// fallthrough
|
||||
case 'active':
|
||||
if (state == 'stalledDL')
|
||||
r = (row['full_data'].upspeed > 0);
|
||||
|
||||
Reference in New Issue
Block a user