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