Added exception for when lyrics don't exsist

This commit is contained in:
RemixDev 2020-10-01 16:04:11 +02:00
parent 22e024af39
commit f3754dc51b
1 changed files with 4 additions and 1 deletions

View File

@ -130,7 +130,10 @@ class Track:
}
if not "LYRICS" in trackAPI_gw and self.lyrics['id'] != 0:
logger.info(f"[{trackAPI_gw['ART_NAME']} - {self.title}] Getting lyrics")
try:
trackAPI_gw["LYRICS"] = dz.get_lyrics_gw(self.id)
except APIError:
self.lyrics['id'] = 0
if self.lyrics['id'] != 0:
self.lyrics['unsync'] = trackAPI_gw["LYRICS"].get("LYRICS_TEXT")
if "LYRICS_SYNC_JSON" in trackAPI_gw["LYRICS"]: