Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4b8f1ccfb6 |
@@ -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
|
||||||
@@ -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
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
@@ -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)
|
||||||
|
|||||||
Reference in New Issue
Block a user