mirror of https://github.com/evilhero/mylar
FIX:(#723) if nzb.su was enabled, provider_order would return a null value
This commit is contained in:
parent
b20449803d
commit
1fa44a7121
|
@ -580,7 +580,7 @@ def initialize():
|
||||||
NZBSU_UID = check_setting_str(CFG, 'NZBsu', 'nzbsu_uid', '')
|
NZBSU_UID = check_setting_str(CFG, 'NZBsu', 'nzbsu_uid', '')
|
||||||
NZBSU_APIKEY = check_setting_str(CFG, 'NZBsu', 'nzbsu_apikey', '')
|
NZBSU_APIKEY = check_setting_str(CFG, 'NZBsu', 'nzbsu_apikey', '')
|
||||||
if NZBSU:
|
if NZBSU:
|
||||||
PR.append('nzbsu')
|
PR.append('nzb.su')
|
||||||
PR_NUM +=1
|
PR_NUM +=1
|
||||||
|
|
||||||
DOGNZB = bool(check_setting_int(CFG, 'DOGnzb', 'dognzb', 0))
|
DOGNZB = bool(check_setting_int(CFG, 'DOGnzb', 'dognzb', 0))
|
||||||
|
|
Loading…
Reference in New Issue