Create valid poststring

This commit is contained in:
Roeland Jago Douma 2014-12-23 21:58:55 +01:00
parent 763d5f67cd
commit 0ad4fb7273

View file

@ -283,7 +283,7 @@ void OcsShareJob::start()
auto tmp2 = _postData.queryItems();
for (int i = 0; i < tmp2.size(); i++) {
if (i != 0) {
tmp.append("=");
tmp.append("&");
}
tmp.append(tmp2[i].first + "=" + tmp2[i].second);
}