FIX:(#2024) Annuals were not being recognized when performing a Recheck Files regardless of format being used

This commit is contained in:
evilhero 2018-07-21 13:17:48 -04:00
parent 668278107b
commit 34e7705f62
1 changed files with 2 additions and 1 deletions

View File

@ -1242,7 +1242,8 @@ def forceRescan(ComicID, archive=None, module=None, recheck=False):
old_status = reann['Status']
fcdigit = helpers.issuedigits(re.sub('annual', '', temploc.lower()).strip())
fcdigit = helpers.issuedigits(re.sub('special', '', temploc.lower()).strip())
if fcdigit == 999999999999999:
fcdigit = helpers.issuedigits(re.sub('special', '', temploc.lower()).strip())
if int(fcdigit) == int_iss and ANNComicID is not None:
logger.fdebug(module + ' [' + str(ANNComicID) + '] Annual match - issue : ' + str(int_iss))