From 908904cffc6550711fbc799594ddcc0c33bf8a1b Mon Sep 17 00:00:00 2001 From: DraftKinner <196864209+DraftKinner@users.noreply.github.com> Date: Sun, 23 Mar 2025 15:43:19 -0400 Subject: [PATCH] Fixed issue #1 --- zotify/app.py | 3 +++ zotify/file.py | 10 ++++++++++ zotify/playable.py | 2 +- 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/zotify/app.py b/zotify/app.py index 1a3cd56..674e999 100644 --- a/zotify/app.py +++ b/zotify/app.py @@ -462,6 +462,9 @@ class App: track.get_cover_art(self.__config.artwork_size) ) + # Remove temp filename + file.clean_filename() + # Reset rate limit counter for every successful download self.rate_limit_hits = 0 diff --git a/zotify/file.py b/zotify/file.py index f40b47b..9a4f96e 100644 --- a/zotify/file.py +++ b/zotify/file.py @@ -130,3 +130,13 @@ class LocalFile: """ f = load_file(self.__path) return f[tag].value + + def clean_filename(self) -> None: + """ + Removes tmp suffix on filename + Args: + None + """ + path = self.__path + clean = path.name.replace("_tmp", "") + path.rename(path.parent.joinpath(clean)) diff --git a/zotify/playable.py b/zotify/playable.py index 338662a..94d2030 100644 --- a/zotify/playable.py +++ b/zotify/playable.py @@ -135,7 +135,7 @@ class Playable: if not isinstance(output, Path): output = Path(output).expanduser() - file = f"{output}.ogg" + file = f"{output}_tmp.ogg" time_start = time() downloaded = 0