This commit is contained in:
2025-04-26 22:01:25 -04:00
parent 0b70d93d47
commit 2a49a92bb2
4 changed files with 24 additions and 15 deletions

View File

@ -99,9 +99,13 @@ class LRCLib:
if isinstance(result["syncedLyrics"], str)
]
best_match = self.matcher.find_best_match(
input_track, possible_matches
)[0]
try:
best_match = self.matcher.find_best_match(
input_track, possible_matches
)[0]
except: # noqa
pass
if not best_match:
return
best_match_id = best_match[0]