diff --git a/src/lyrics_fetcher.cpp b/src/lyrics_fetcher.cpp index 994202df..e64b2ed3 100644 --- a/src/lyrics_fetcher.cpp +++ b/src/lyrics_fetcher.cpp @@ -31,6 +31,7 @@ LyricsFetcher *lyricsPlugins[] = { new LyricwikiFetcher(), + new LyricsvipFetcher(), new Sing365Fetcher(), new LyriczzFetcher(), new SonglyricsFetcher(), diff --git a/src/lyrics_fetcher.h b/src/lyrics_fetcher.h index e61eea1d..c394333e 100644 --- a/src/lyrics_fetcher.h +++ b/src/lyrics_fetcher.h @@ -160,6 +160,16 @@ struct Sing365Fetcher : public GoogleLyricsFetcher virtual const char *getCloseTag() { return "
"; } + virtual const char *getCloseTag() { return ""; } +}; + struct InternetLyricsFetcher : public GoogleLyricsFetcher { virtual const char *name() { return "the Internet"; }