From 5e60cf2afe3984d977be7a4347f967276f3ee479 Mon Sep 17 00:00:00 2001 From: Agnibho Mondal Date: Wed, 8 Nov 2023 22:44:45 +0530 Subject: [PATCH] Bugfix: index entries --- index.py | 1 + 1 file changed, 1 insertion(+) diff --git a/index.py b/index.py index efa80c0..0b64400 100644 --- a/index.py +++ b/index.py @@ -122,6 +122,7 @@ class Index(QMainWindow): def build(self): files=glob(os.path.join(config["document_directory"], "**", "*.mpaz"), recursive=True) + self.index=[] for file in files: try: with ZipFile(file) as zf: -- 2.39.5