mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-10 07:22:47 -07:00
WebUI: enforce strict comparison operators
This commit is contained in:
parent
75e2ae2fa0
commit
4945ed576a
19 changed files with 70 additions and 68 deletions
|
@ -350,7 +350,7 @@ window.qBittorrent.PropFiles = (function() {
|
|||
return;
|
||||
}
|
||||
let loadedNewTorrent = false;
|
||||
if (new_hash != current_hash) {
|
||||
if (new_hash !== current_hash) {
|
||||
torrentFilesTable.clear();
|
||||
current_hash = new_hash;
|
||||
loadedNewTorrent = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue