lyrics fetcher: strip html tags from lyrics from lyricsfly.com

This commit is contained in:
Andrzej Rybczak
2010-08-11 14:16:43 +02:00
parent 68a7d11c0e
commit 2a79184108
2 changed files with 3 additions and 3 deletions

View File

@@ -143,8 +143,8 @@ bool LyricwikiFetcher::notLyrics(const std::string &data)
void LyricsflyFetcher::postProcess(std::string &data)
{
Replace(data, "[br]", "");
Trim(data);
Replace(data, "[br]", "\n");
LyricsFetcher::postProcess(data);
}
/**********************************************************************/