mirror of https://github.com/evilhero/mylar
FIX:(#2024) Annuals were not being recognized when performing a Recheck Files regardless of format being used
This commit is contained in:
parent
1d9a28c10e
commit
51fd4fb2fd
|
@ -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))
|
||||
|
|
Loading…
Reference in New Issue