Add filter "Checking" to side panel (#15166)

This commit is contained in:
AbeniMatteo 2021-07-16 13:08:10 +02:00 committed by GitHub
parent 933e56494c
commit e5943b64c1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 23 additions and 0 deletions

View file

@ -1314,6 +1314,10 @@ window.qBittorrent.DynamicTable = (function() {
if (r == inactive)
return false;
break;
case 'checking':
if (state !== 'checkingUP' && state !== 'checkingDL' && state !== 'checkingResumeData')
return false;
break;
case 'errored':
if (state != 'error' && state != "unknown" && state != "missingFiles")
return false;