From 0799f3b81b715b651bf67250bdc5507424dc074b Mon Sep 17 00:00:00 2001 From: DraftKinner <196864209+DraftKinner@users.noreply.github.com> Date: Sun, 9 Mar 2025 17:41:53 -0400 Subject: [PATCH] Removed writing spotid as metadata when an already existing file is detected during output file creation --- zotify/playable.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/zotify/playable.py b/zotify/playable.py index a009514..d3250bc 100644 --- a/zotify/playable.py +++ b/zotify/playable.py @@ -89,8 +89,6 @@ class Playable: file_path = library.joinpath(output).expanduser() check_path = Path(f"{file_path}.{ext}") if check_path.exists() and not replace: - f = LocalFile(check_path) - f.write_metadata(self.metadata) raise FileExistsError("File already downloaded") else: file_path.parent.mkdir(parents=True, exist_ok=True)