Removed writing spotid as metadata when an already existing file is detected during output file creation

This commit is contained in:
DraftKinner 2025-03-09 17:41:53 -04:00
parent 638e9f10c6
commit 0799f3b81b

View file

@ -89,8 +89,6 @@ class Playable:
file_path = library.joinpath(output).expanduser()
check_path = Path(f"{file_path}.{ext}")
if check_path.exists() and not replace:
f = LocalFile(check_path)
f.write_metadata(self.metadata)
raise FileExistsError("File already downloaded")
else:
file_path.parent.mkdir(parents=True, exist_ok=True)