mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-07 05:31:25 -07:00
Add missing semicolons
Also trim trailing whitespaces along the way.
This commit is contained in:
parent
ff82063520
commit
ccdc3b201b
4 changed files with 24 additions and 24 deletions
|
@ -1305,9 +1305,9 @@ window.qBittorrent.DynamicTable = (function() {
|
|||
return false;
|
||||
break;
|
||||
default:
|
||||
const tracker = trackerList.get(trackerHashInt)
|
||||
const tracker = trackerList.get(trackerHashInt);
|
||||
if (tracker && !tracker.torrents.includes(row['full_data'].rowId))
|
||||
return false
|
||||
return false;
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -2480,7 +2480,7 @@ window.qBittorrent.DynamicTable = (function() {
|
|||
tr.removeClass('articleTableFeed');
|
||||
tr.addClass('articleTableArticle');
|
||||
}
|
||||
|
||||
|
||||
const tds = tr.getElements('td');
|
||||
for (let i = 0; i < this.columns.length; ++i) {
|
||||
if (data.hasOwnProperty(this.columns[i].dataProperties[0]))
|
||||
|
@ -2489,7 +2489,7 @@ window.qBittorrent.DynamicTable = (function() {
|
|||
row['data'] = {};
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
|
||||
return exports();
|
||||
})();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue