Fixed issue #1
This commit is contained in:
parent
83f56b0cac
commit
908904cffc
3 changed files with 14 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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))
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue