From c5d51ef7ad2427cb053550585e9b53bb87c2db9d Mon Sep 17 00:00:00 2001 From: Dazed Date: Sun, 10 Dec 2023 18:54:51 -0600 Subject: [PATCH] Small mismatch fix --- modules/rpgmakermvmz.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/rpgmakermvmz.py b/modules/rpgmakermvmz.py index 2589cf3..8b5c9bd 100644 --- a/modules/rpgmakermvmz.py +++ b/modules/rpgmakermvmz.py @@ -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)