mirror of
https://github.com/SickGear/SickGear.git
synced 2025-03-15 09:07:43 +00:00
Change sab API request to prevent naming mismatch.
This commit is contained in:
parent
468654fa5c
commit
eb4bf57111
2 changed files with 3 additions and 0 deletions
|
@ -198,6 +198,7 @@
|
||||||
* Change prevent browser auto completing password fields on config pages
|
* Change prevent browser auto completing password fields on config pages
|
||||||
* Change refresh page when torrent providers are enabled/disabled
|
* Change refresh page when torrent providers are enabled/disabled
|
||||||
* Change only display Search Settings/"Usenet retention" if Search NZBs is enabled
|
* Change only display Search Settings/"Usenet retention" if Search NZBs is enabled
|
||||||
|
* Change sab API request to prevent naming mismatch
|
||||||
|
|
||||||
[develop changelog]
|
[develop changelog]
|
||||||
* Change send nzb data to NZBGet for Anizb instead of url
|
* Change send nzb data to NZBGet for Anizb instead of url
|
||||||
|
|
|
@ -45,6 +45,8 @@ def send_nzb(nzb):
|
||||||
if 1 == nzb.priority:
|
if 1 == nzb.priority:
|
||||||
params['priority'] = 1
|
params['priority'] = 1
|
||||||
|
|
||||||
|
params['nzbname'] = '%s.nzb' % nzb.name
|
||||||
|
|
||||||
kwargs = {}
|
kwargs = {}
|
||||||
# if it's a normal result we just pass SAB the URL
|
# if it's a normal result we just pass SAB the URL
|
||||||
if 'nzb' == nzb.resultType:
|
if 'nzb' == nzb.resultType:
|
||||||
|
|
Loading…
Reference in a new issue