修复添加种子元数据时,传入扩展参数失效的bug

This commit is contained in:
iyuu.cn
2020-01-17 15:04:26 +08:00
parent c222663547
commit f86c0a8392
2 changed files with 19 additions and 15 deletions

View File

@ -291,10 +291,10 @@ class AutoReseed
}
}
break;
case 'qBittorrent':
if ($is_url) {
$extra_options['paused'] = 'true';
$extra_options['autoTMM'] = 'false'; //关闭自动种子管理
case 'qBittorrent':
$extra_options['paused'] = 'true';
$extra_options['autoTMM'] = 'false'; //关闭自动种子管理
if ($is_url) {
$result = self::$links[$rpcKey]['rpc']->add($torrent, $save_path, $extra_options); // 种子URL添加下载任务
} else {
$extra_options['name'] = 'torrents';