Merge branch 'v1.0-dev' of https://github.com/KDalu/zotify into v1.0-dev

This commit is contained in:
KDalu 2025-01-26 14:41:42 -05:00
commit 33a718eccb
2 changed files with 4 additions and 2 deletions

View file

@ -267,9 +267,10 @@ class App:
track.metadata.extend(playable.metadata)
try:
output = track.create_output(
self.__config.audio_format.value.ext,
playable.library,
playable.output_template,
self.__config.replace_existing,
self.__config.replace_existing
)
except FileExistsError:
Logger.log(

View file

@ -65,6 +65,7 @@ class Playable:
def create_output(
self,
ext: str,
library: Path | str = Path("./"),
output: str = "{title}",
replace: bool = False,
@ -86,7 +87,7 @@ class Playable:
"{" + meta.name + "}", fix_filename(meta.string)
)
file_path = library.joinpath(output).expanduser()
if file_path.exists() and not replace:
if file_path.with_suffix("." + ext).exists() and not replace:
raise FileExistsError("File already downloaded")
else:
file_path.parent.mkdir(parents=True, exist_ok=True)