From cf06b40afc75a1ae611168ecb23cb3c51a97dbf1 Mon Sep 17 00:00:00 2001 From: DraftKinner <196864209+DraftKinner@users.noreply.github.com> Date: Sat, 22 Mar 2025 16:11:37 -0400 Subject: [PATCH] Fixed issue #19: Added try/except clause on previous fix when getting track id metadata --- zotify/playable.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/zotify/playable.py b/zotify/playable.py index b85f1e3..338662a 100644 --- a/zotify/playable.py +++ b/zotify/playable.py @@ -100,11 +100,19 @@ class Playable: check_path = Path(f"{file_path}.{ext}") if check_path.exists(): f = LocalFile(check_path) - if f.get_metadata("spotid") != spotid: + f_spotid = None + + try: + f_spotid = f.get_metadata("spotid") + except IndexError: + pass + + if f_spotid != spotid: file_path = Path(f"{file_path} (SpotId:{spotid[-5:]})") else: if not replace: raise FileExistsError("File already downloaded") + else: file_path.parent.mkdir(parents=True, exist_ok=True)