1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-24 05:25:37 +00:00

Merge pull request #11871 from NotTsunami/bitwise

WebUI: Use correct operators in logical expressions
This commit is contained in:
Mike Tzou 2020-01-14 12:54:56 +08:00 committed by GitHub
commit e27c9bd020
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1206,7 +1206,7 @@ window.qBittorrent.DynamicTable = (function() {
switch (filterName) {
case 'downloading':
if (state != 'downloading' && !~state.indexOf('DL'))
if ((state != 'downloading') && (state.indexOf('DL') === -1))
return false;
break;
case 'seeding':
@ -1214,15 +1214,15 @@ window.qBittorrent.DynamicTable = (function() {
return false;
break;
case 'completed':
if (state != 'uploading' && !~state.indexOf('UP'))
if ((state != 'uploading') && (state.indexOf('UP') === -1))
return false;
break;
case 'paused':
if (!~state.indexOf('paused'))
if (state.indexOf('paused') === -1)
return false;
break;
case 'resumed':
if (~state.indexOf('paused'))
if (state.indexOf('paused') > -1)
return false;
break;
case 'inactive':
@ -1338,7 +1338,7 @@ window.qBittorrent.DynamicTable = (function() {
this._this.selectRow(this.rowId);
const row = this._this.rows.get(this.rowId);
const state = row['full_data'].state;
if (~state.indexOf('paused'))
if (state.indexOf('paused') > -1)
startFN();
else
pauseFN();