lyrics fetcher: do not apply quotation marks to google keywords

This commit is contained in:
Andrzej Rybczak
2010-08-10 20:45:08 +02:00
parent 923eaef466
commit 87298907e1

View File

@@ -152,9 +152,8 @@ LyricsFetcher::Result GoogleLyricsFetcher::fetch(const std::string &artist, cons
Result result; Result result;
result.first = false; result.first = false;
std::string search_str = "%22"; std::string search_str = artist;
search_str += artist; search_str += "+";
search_str += "%22+";
search_str += title; search_str += title;
search_str += "+"; search_str += "+";
search_str += getSiteKeyword(); search_str += getSiteKeyword();