mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-17 14:08:03 -06:00
WebUI: enforce strict comparison operators
This commit is contained in:
@@ -57,7 +57,7 @@ window.qBittorrent.PropTrackers = (function() {
|
||||
loadTrackersDataTimer = loadTrackersData.delay(10000);
|
||||
return;
|
||||
}
|
||||
if (new_hash != current_hash) {
|
||||
if (new_hash !== current_hash) {
|
||||
torrentTrackersTable.clear();
|
||||
current_hash = new_hash;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user