mirror of
https://github.com/idanoo/autobrr
synced 2025-07-26 10:19:13 +00:00
fix(clients): qBittorrent rules ignore slow (#1200)
fix(clients): qBit rules ignore slow
This commit is contained in:
parent
ee0d055743
commit
d602b1e868
3 changed files with 77 additions and 62 deletions
3
web/src/types/Download.d.ts
vendored
3
web/src/types/Download.d.ts
vendored
|
@ -31,10 +31,13 @@ interface DownloadClientRules {
|
|||
enabled: boolean;
|
||||
max_active_downloads: number;
|
||||
ignore_slow_torrents: boolean;
|
||||
ignore_slow_torrents_condition: IgnoreTorrentsCondition;
|
||||
download_speed_threshold: number;
|
||||
upload_speed_threshold: number;
|
||||
}
|
||||
|
||||
type IgnoreTorrentsCondition = "ALWAYS" | "MAX_DOWNLOADS_REACHED";
|
||||
|
||||
interface DownloadClientBasicAuth {
|
||||
auth: boolean;
|
||||
username: string;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue