mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 00:39:13 +00:00
fix: download clients rule checking (#137)
* fix: download client rules exit * feat: improve re-announce
This commit is contained in:
parent
b60e5f61c6
commit
c3687b8fa5
3 changed files with 74 additions and 23 deletions
|
@ -92,7 +92,8 @@ func (s *service) runAction(action domain.Action, release domain.Release) error
|
|||
return err
|
||||
}
|
||||
if !canDownload {
|
||||
rejections = []string{"deluge busy"}
|
||||
rejections = []string{"max active downloads reached, skipping"}
|
||||
break
|
||||
}
|
||||
|
||||
if release.TorrentTmpFile == "" {
|
||||
|
@ -120,7 +121,8 @@ func (s *service) runAction(action domain.Action, release domain.Release) error
|
|||
return err
|
||||
}
|
||||
if !canDownload {
|
||||
rejections = []string{"qBittorrent busy"}
|
||||
rejections = []string{"max active downloads reached, skipping"}
|
||||
break
|
||||
}
|
||||
|
||||
if release.TorrentTmpFile == "" {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue