Removed writing spotid as metadata when an already existing file is detected during output file creation
This commit is contained in:
parent
638e9f10c6
commit
0799f3b81b
1 changed files with 0 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue