Add missing line ending to serial

This commit is contained in:
Sude 2015-05-12 15:05:28 +03:00
parent cd0a829d59
commit 50e1e34fba

View File

@ -2246,7 +2246,7 @@ std::string Downloader::getSerialsFromJSON(const Json::Value& json)
std::string cdkey = json["cdKey"].asString();
if (cdkey.find("<span>") == std::string::npos)
{
serials << cdkey;
serials << cdkey << std::endl;
}
else
{