diff --git a/pkg/qbit/http.go b/pkg/qbit/http.go index a73468a..409677c 100644 --- a/pkg/qbit/http.go +++ b/pkg/qbit/http.go @@ -89,7 +89,7 @@ func (q *QBit) handleTorrentsAdd(w http.ResponseWriter, r *http.Request) { } action := "symlink" - if strings.ToLower(r.FormValue("sequentialDownload")) != "true" { + if strings.ToLower(r.FormValue("sequentialDownload")) == "true" { action = "download" } debridName := r.FormValue("debrid") diff --git a/pkg/store/torrent.go b/pkg/store/torrent.go index aec09e0..db73285 100644 --- a/pkg/store/torrent.go +++ b/pkg/store/torrent.go @@ -243,7 +243,6 @@ func (s *Store) processFiles(torrent *Torrent, debridTorrent *types.Torrent, imp onFailed(err) return } - s.logger.Debug().Msgf("Download Post-Download Action") torrentSymlinkPath, err = s.processDownload(torrent, debridTorrent) if err != nil { onFailed(err)