mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-21 13:53:15 -07:00
add delete_failed for music. Fixes #1355
This commit is contained in:
parent
58ee2b0d52
commit
5d5d69ecdd
2 changed files with 2 additions and 0 deletions
|
@ -179,6 +179,7 @@
|
||||||
###### ADVANCED USE - ONLY EDIT IF YOU KNOW WHAT YOU'RE DOING ######
|
###### ADVANCED USE - ONLY EDIT IF YOU KNOW WHAT YOU'RE DOING ######
|
||||||
ssl = 0
|
ssl = 0
|
||||||
web_root =
|
web_root =
|
||||||
|
delete_failed = 0
|
||||||
wait_for = 2
|
wait_for = 2
|
||||||
# Enable/Disable linking for Torrents
|
# Enable/Disable linking for Torrents
|
||||||
Torrent_NoLink = 0
|
Torrent_NoLink = 0
|
||||||
|
|
|
@ -121,6 +121,7 @@ class autoProcessMusic(object):
|
||||||
apikey = cfg["apikey"]
|
apikey = cfg["apikey"]
|
||||||
wait_for = int(cfg["wait_for"])
|
wait_for = int(cfg["wait_for"])
|
||||||
ssl = int(cfg.get("ssl", 0))
|
ssl = int(cfg.get("ssl", 0))
|
||||||
|
delete_failed = int(cfg["delete_failed"])
|
||||||
web_root = cfg.get("web_root", "")
|
web_root = cfg.get("web_root", "")
|
||||||
remote_path = int(cfg.get("remote_path", 0))
|
remote_path = int(cfg.get("remote_path", 0))
|
||||||
protocol = "https://" if ssl else "http://"
|
protocol = "https://" if ssl else "http://"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue