Fix missing arg

This commit is contained in:
Klaus Basan
2017-06-11 21:32:19 +02:00
parent 7a75413fc1
commit e45ad3b7e9

View File

@@ -152,7 +152,7 @@ namespace BlackMisc
{ {
if (!msg.isEmpty()) if (!msg.isEmpty())
{ {
this->m_errorMsgs.append(QString("URL: %1 error: ").arg(url.toQString(), msg)); this->m_errorMsgs.append(QString("URL: %1 error: %2").arg(url.toQString(), msg));
} }
return obtainNextWorkingUrl(random, connectTimeoutMs); return obtainNextWorkingUrl(random, connectTimeoutMs);
} }