From afc696de5d2d3711c05d6d5972bba102cfea76ec Mon Sep 17 00:00:00 2001 From: DraftKinner <196864209+DraftKinner@users.noreply.github.com> Date: Mon, 10 Feb 2025 00:02:36 -0500 Subject: [PATCH] Fixed track extension being appended twice --- zotify/playable.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zotify/playable.py b/zotify/playable.py index bb57e36..a009514 100644 --- a/zotify/playable.py +++ b/zotify/playable.py @@ -87,9 +87,9 @@ class Playable: "{" + meta.name + "}", fix_filename(meta.string) ) file_path = library.joinpath(output).expanduser() - file_path = Path(f"{file_path}.{ext}") - if file_path.exists() and not replace: - f = LocalFile(file_path) + 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: