Remove separators between parts of lyrics

This commit is contained in:
Andrzej Rybczak
2020-12-21 00:41:55 +01:00
parent d08e76c7ed
commit ba2a4533ab

View File

@@ -99,11 +99,7 @@ LyricsFetcher::Result LyricsFetcher::fetch(const std::string &artist,
{ {
postProcess(*it); postProcess(*it);
if (!it->empty()) if (!it->empty())
{
data += *it; data += *it;
if (it != lyrics.end()-1)
data += "\n\n----------\n\n";
}
} }
result.second = data; result.second = data;