优化qBittorrent过滤函数

This commit is contained in:
iyuu.cn
2019-12-31 11:53:09 +08:00
parent 134deb967c
commit 7f09bdb059

View File

@ -509,7 +509,7 @@ function filterStatus( $v ){
* qBittorrent过滤函数只保留正常做种
*/
function qbfilterStatus( $v ){
if( ($v['state']=='uploading') || ($v['state'] == 'stalledUP') ){
if( ($v['state']=='uploading') || ($v['state'] == 'stalledUP') || ($v['state'] == 'pausedUP') || ($v['state'] == 'queuedUP') || ($v['state'] == 'checkingUP') || ($v['state'] == 'forcedUP') ){
return true;
}
return false;