Fixed issue #1

This commit is contained in:
DraftKinner 2025-03-23 15:43:19 -04:00
parent 83f56b0cac
commit 908904cffc
3 changed files with 14 additions and 1 deletions

View file

@ -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

View file

@ -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))

View file

@ -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