mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-14 17:23:07 -07:00
Add 'Resumed' filter
This commit is contained in:
parent
0f56440dec
commit
f5f9e206fb
6 changed files with 21 additions and 1 deletions
|
@ -261,6 +261,10 @@ var dynamicTable = new Class({
|
|||
if (!~state.indexOf('paused'))
|
||||
return false;
|
||||
break;
|
||||
case 'resumed':
|
||||
if (~state.indexOf('paused'))
|
||||
return false;
|
||||
break;
|
||||
case 'active':
|
||||
if ((state != 'uploading') && (state != 'downloading'))
|
||||
return false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue