Fix fetching lyrics from sing365.com and genius.com

This commit is contained in:
Andrzej Rybczak
2017-05-21 16:08:19 +02:00
parent 2362770b66
commit 99107c5b39
2 changed files with 4 additions and 4 deletions

View File

@@ -106,7 +106,7 @@ struct Sing365Fetcher : public GoogleLyricsFetcher
virtual const char *name() const override { return "sing365.com"; }
protected:
virtual const char *regex() const override { return "<!-Lyrics Begin->(.*?)<!-Lyrics End->"; }
virtual const char *regex() const override { return "<div class=\"content\">.*?</script>(.*?)<script>"; }
};
struct JustSomeLyricsFetcher : public GoogleLyricsFetcher
@@ -130,7 +130,7 @@ struct GeniusFetcher : public GoogleLyricsFetcher
virtual const char *name() const override { return "genius.com"; }
protected:
virtual const char *regex() const override { return "<lyrics.*?>(.*?)</lyrics>"; }
virtual const char *regex() const override { return "<div class=\"lyrics\">(.*?)</div>"; }
};
struct JahLyricsFetcher : public GoogleLyricsFetcher