Small mismatch fix

This commit is contained in:
Dazed 2023-12-10 18:54:51 -06:00
parent 18a998f14b
commit c5d51ef7ad

View file

@ -1516,7 +1516,8 @@ def searchCodes(page, pbar, fillList, filename):
if len(fillList) != len(docList):
global MISMATCH
with LOCK:
MISMATCH.append(filename)
if filename not in MISMATCH:
MISMATCH.append(filename)
else:
docList = []
searchCodes(page, pbar, fillList, filename)