Skip to content

Commit

Permalink
0.2.7:
Browse files Browse the repository at this point in the history
- Add support for multiple debrid providers
- Add Torbox support
- Add support for configurable debrid cache checks
- Add support for configurable debrid download uncached torrents
  • Loading branch information
sirrobot01 committed Nov 25, 2024
1 parent b51cb95 commit df2aa4e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,11 @@

#### 0.2.6
- Delete torrent for empty matched files
- Update Readme
- Update Readme

#### 0.2.7

- Add support for multiple debrid providers
- Add Torbox support
- Add support for configurable debrid cache checks
- Add support for configurable debrid download uncached torrents
2 changes: 1 addition & 1 deletion pkg/qbit/qbit.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func (q *QBit) CreateTorrentFromMagnet(magnet *common.Magnet, category string) *
func (q *QBit) processFiles(torrent *Torrent, debridTorrent *debrid.Torrent, arr *debrid.Arr, isSymlink bool) {
for debridTorrent.Status != "downloaded" {
progress := debridTorrent.Progress
q.logger.Printf("RD Download Progress: %.2f%%", progress)
q.logger.Printf("%s Download Progress: %.2f%%", debridTorrent.Debrid.GetName(), progress)
time.Sleep(5 * time.Second)
dbT, err := debridTorrent.Debrid.CheckStatus(debridTorrent, isSymlink)
if err != nil {
Expand Down

0 comments on commit df2aa4e

Please sign in to comment.