diff --git a/beetsplug/lyrics.py b/beetsplug/lyrics.py index 66b859f59c..b979e1b64f 100644 --- a/beetsplug/lyrics.py +++ b/beetsplug/lyrics.py @@ -321,7 +321,8 @@ def fetch(self, artist, title): html = self.fetch_url(url) if not html: return - lyrics = extract_text_in(html, u"
") + lyrics = extract_text_in(unescape(html), u"
") + lyrics = scrape_lyrics_from_html(lyrics) if lyrics and 'Unfortunately, we are not licensed' not in lyrics: return lyrics