Closed timomal closed 3 years ago
Hey,
when downloading music without genre there will be a 'index out of range' error.
Fix it by adding a try-except around line 270 in Deezer.py.
if "genre_id" in album_data: try: tags["genre"] = album_data["genres"]["data"][0]["name"] except: tags["genre"] = "unknown"
Hey,
when downloading music without genre there will be a 'index out of range' error.
Fix it by adding a try-except around line 270 in Deezer.py.