Fix compilation due to RsPeers::GetRetroshareInvite

This commit is contained in:
Gioacchino Mazzurco 2018-10-06 02:46:09 +02:00
parent 2b3570903f
commit c6ca3c5669
No known key found for this signature in database
GPG key ID: A1FBCA3872E87051
5 changed files with 19 additions and 13 deletions

View file

@ -422,7 +422,9 @@ void PeersHandler::handleWildcard(Request &req, Response &resp)
{
if(str == "self" && !req.mPath.empty() && req.mPath.top() == "certificate")
{
resp.mDataStream << makeKeyValue("cert_string", mRsPeers->GetRetroshareInvite(false));
resp.mDataStream << makeKeyValue(
"cert_string",
mRsPeers->GetRetroshareInvite());
resp.setOk();
return;
}