mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-17 22:18:05 -06:00
Add missing semicolons
Also trim trailing whitespaces along the way.
This commit is contained in:
@@ -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();
|
||||
})();
|
||||
|
||||
Reference in New Issue
Block a user