mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-18 06:28:03 -06:00
WebUI: Implement a 'Completed' status
This commit is contained in:
@@ -253,12 +253,16 @@ var dynamicTable = new Class({
|
||||
if ((state != 'downloading') && !~state.indexOf('DL'))
|
||||
return false;
|
||||
break;
|
||||
case 'seeding':
|
||||
if ((state != 'uploading') && (state != 'stalledUP') && (state != 'queuedUP') && (state != 'checkingUP'))
|
||||
return false;
|
||||
break;
|
||||
case 'completed':
|
||||
if ((state != 'uploading') && !~state.indexOf('UP'))
|
||||
return false;
|
||||
break;
|
||||
case 'paused':
|
||||
if (!~state.indexOf('paused'))
|
||||
if (state != 'pausedDL')
|
||||
return false;
|
||||
break;
|
||||
case 'resumed':
|
||||
|
||||
Reference in New Issue
Block a user