mirror of
https://github.com/evilhero/mylar
synced 2024-12-25 01:01:47 +00:00
RSS Check query would search for 'newznab' instead of site name.
This commit is contained in:
parent
87d37e6011
commit
77575cc660
1 changed files with 4 additions and 1 deletions
|
@ -452,7 +452,10 @@ def NZB_SEARCH(ComicName, IssueNumber, ComicYear, SeriesYear, Publisher, IssueDa
|
|||
else:
|
||||
cmname = re.sub("%20", " ", str(comsrc))
|
||||
logger.fdebug("Sending request to RSS for " + str(findcomic) + " : " + str(mod_isssearch) + " (" + str(ComicYear) + ")")
|
||||
bb = rsscheck.nzbdbsearch(findcomic,mod_isssearch,ComicID,nzbprov,ComicYear,ComicVersion)
|
||||
if nzbprov == 'newznab':
|
||||
nzbprov_fix = name_newznab
|
||||
else: nzbprov_fix = nzbprov
|
||||
bb = rsscheck.nzbdbsearch(findcomic,mod_isssearch,ComicID,nzbprov_fix,ComicYear,ComicVersion)
|
||||
rss = "yes"
|
||||
#if bb is not None: logger.fdebug("bb results: " + str(bb))
|
||||
#this is the API calls
|
||||
|
|
Loading…
Reference in a new issue