Fixed issue #19: Added try/except clause on previous fix when getting track id metadata
This commit is contained in:
parent
16f3e6c38e
commit
cf06b40afc
1 changed files with 9 additions and 1 deletions
|
@ -100,11 +100,19 @@ class Playable:
|
||||||
check_path = Path(f"{file_path}.{ext}")
|
check_path = Path(f"{file_path}.{ext}")
|
||||||
if check_path.exists():
|
if check_path.exists():
|
||||||
f = LocalFile(check_path)
|
f = LocalFile(check_path)
|
||||||
if f.get_metadata("spotid") != spotid:
|
f_spotid = None
|
||||||
|
|
||||||
|
try:
|
||||||
|
f_spotid = f.get_metadata("spotid")
|
||||||
|
except IndexError:
|
||||||
|
pass
|
||||||
|
|
||||||
|
if f_spotid != spotid:
|
||||||
file_path = Path(f"{file_path} (SpotId:{spotid[-5:]})")
|
file_path = Path(f"{file_path} (SpotId:{spotid[-5:]})")
|
||||||
else:
|
else:
|
||||||
if not replace:
|
if not replace:
|
||||||
raise FileExistsError("File already downloaded")
|
raise FileExistsError("File already downloaded")
|
||||||
|
|
||||||
else:
|
else:
|
||||||
file_path.parent.mkdir(parents=True, exist_ok=True)
|
file_path.parent.mkdir(parents=True, exist_ok=True)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue