From 8a848d69f95ba6d5ff49cae2645ca289f06e0d00 Mon Sep 17 00:00:00 2001 From: DraftKinner <196864209+DraftKinner@users.noreply.github.com> Date: Fri, 21 Mar 2025 23:32:22 -0400 Subject: [PATCH] Fixed issue #26 --- zotify/collections.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/zotify/collections.py b/zotify/collections.py index 2abc269..aade82a 100644 --- a/zotify/collections.py +++ b/zotify/collections.py @@ -57,7 +57,10 @@ class Collection: for file in iglob(scan_path): f_path = Path(file) f = LocalFile(f_path) - existing[f.get_metadata("spotid")] = f_path.stem + try: + existing[f.get_metadata("spotid")] = f_path.stem + except IndexError: + pass for playable in self.playables: if playable.id in existing.keys(): @@ -92,7 +95,10 @@ class Collection: if self.path.exists() and f_path.match(collection_path): continue f = LocalFile(f_path) - existing[f.get_metadata("spotid")] = f_path.stem + try: + existing[f.get_metadata("spotid")] = f_path.stem + except IndexError: + pass for playable in self.playables: if playable.id in existing.keys():