1 Commits

Author SHA1 Message Date
Mukhtar Akere
4b8f1ccfb6 Changelog 0.2.6 2024-10-08 15:43:38 +01:00
3 changed files with 9 additions and 2 deletions

View File

@@ -72,4 +72,8 @@
#### 0.2.5 #### 0.2.5
- Fix ContentPath not being set prior - Fix ContentPath not being set prior
- Rewrote Readme - Rewrote Readme
- Cleaned up the code - Cleaned up the code
#### 0.2.6
- Delete torrent for empty matched files
- Update Readme

View File

@@ -3,7 +3,7 @@
This is a Golang implementation go Torrent QbitTorrent with a **Real Debrid Proxy Support**. This is a Golang implementation go Torrent QbitTorrent with a **Real Debrid Proxy Support**.
#### Uses #### Uses
- Mock Qbittorent API that supports the Arrs(Sonarr, Radarr, etc) - Mock Qbittorent API that supports the Arrs(Sonarr, Radarr, Lidarr etc)
- Proxy support for the Arrs - Proxy support for the Arrs
The proxy is useful in filtering out un-cached Real Debrid torrents The proxy is useful in filtering out un-cached Real Debrid torrents
@@ -37,6 +37,8 @@ services:
- QBIT_PORT=8282 # qBittorrent Port. This is optional. You can set this in the config file - QBIT_PORT=8282 # qBittorrent Port. This is optional. You can set this in the config file
- PORT=8181 # Proxy Port. This is optional. You can set this in the config file - PORT=8181 # Proxy Port. This is optional. You can set this in the config file
restart: unless-stopped restart: unless-stopped
depends_on:
- rclone # If you are using rclone with docker
``` ```

View File

@@ -185,6 +185,7 @@ func (r *RealDebrid) CheckStatus(torrent *Torrent, isSymlink bool) (*Torrent, er
files := GetTorrentFiles(data) files := GetTorrentFiles(data)
torrent.Files = files torrent.Files = files
if len(files) == 0 { if len(files) == 0 {
r.DeleteTorrent(torrent)
return torrent, fmt.Errorf("no video files found") return torrent, fmt.Errorf("no video files found")
} }
filesId := make([]string, 0) filesId := make([]string, 0)