mirror of
https://github.com/evilhero/mylar
synced 2024-12-25 09:11:46 +00:00
FIX: If no option for fuzzy year was selected, search would fail to match on results
This commit is contained in:
parent
00fb374a59
commit
7d1eab92e0
1 changed files with 2 additions and 2 deletions
|
@ -392,8 +392,8 @@ def NZB_SEARCH(ComicName, IssueNumber, ComicYear, SeriesYear, nzbprov, nzbpr, Is
|
||||||
if cnt == 0:
|
if cnt == 0:
|
||||||
comic_andiss = m[cnt]
|
comic_andiss = m[cnt]
|
||||||
logger.fdebug("Comic: " + str(comic_andiss))
|
logger.fdebug("Comic: " + str(comic_andiss))
|
||||||
if UseFuzzy == "0" or UseFuzzy == "2" or IssDateFix == "yes":
|
logger.fdebug("UseFuzzy is : " + str(UseFuzzy))
|
||||||
#logger.fdebug("UseFuzzy is : " + str(UseFuzzy))
|
if UseFuzzy == "0" or UseFuzzy == "2" or UseFuzzy is None or IssDateFix == "yes":
|
||||||
if m[cnt][:-2] == '19' or m[cnt][:-2] == '20':
|
if m[cnt][:-2] == '19' or m[cnt][:-2] == '20':
|
||||||
logger.fdebug("year detected: " + str(m[cnt]))
|
logger.fdebug("year detected: " + str(m[cnt]))
|
||||||
result_comyear = m[cnt]
|
result_comyear = m[cnt]
|
||||||
|
|
Loading…
Reference in a new issue