Fixed track extension being appended twice
This commit is contained in:
parent
813e322f76
commit
afc696de5d
1 changed files with 3 additions and 3 deletions
|
@ -87,9 +87,9 @@ class Playable:
|
||||||
"{" + meta.name + "}", fix_filename(meta.string)
|
"{" + meta.name + "}", fix_filename(meta.string)
|
||||||
)
|
)
|
||||||
file_path = library.joinpath(output).expanduser()
|
file_path = library.joinpath(output).expanduser()
|
||||||
file_path = Path(f"{file_path}.{ext}")
|
check_path = Path(f"{file_path}.{ext}")
|
||||||
if file_path.exists() and not replace:
|
if check_path.exists() and not replace:
|
||||||
f = LocalFile(file_path)
|
f = LocalFile(check_path)
|
||||||
f.write_metadata(self.metadata)
|
f.write_metadata(self.metadata)
|
||||||
raise FileExistsError("File already downloaded")
|
raise FileExistsError("File already downloaded")
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Add table
Reference in a new issue