mirror of
https://github.com/beetbox/beets.git
synced 2025-12-25 01:53:31 +01:00
Fix lyrics extraction from MusiXmatch
Remove "lyrics_" prefix from extract_text_between arguments to reflect changes made to the MusiXmatch website.
This commit is contained in:
parent
44c799320f
commit
1ec06e14c5
1 changed files with 1 additions and 1 deletions
|
|
@ -229,7 +229,7 @@ class MusiXmatch(SymbolsReplaced):
|
|||
if not html:
|
||||
return
|
||||
lyrics = extract_text_between(html,
|
||||
'"lyrics_body":', '"lyrics_language":')
|
||||
'"body":', '"language":')
|
||||
return lyrics.strip(',"').replace('\\n', '\n')
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue