Fixed "double-click" chat startup bug.

* the gpgOnly flag was incorrectly set false.



git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4550 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
drbob 2011-08-10 11:00:34 +00:00
parent 8438d011c1
commit 6931a3ba2c

View File

@ -277,7 +277,7 @@ bool p3Peers::getPeerDetails(const std::string &id, RsPeerDetails &d)
#ifdef P3PEERS_DEBUG
std::cerr << "p3Peers::getPeerDetails() ERROR not an SSL Id: " << id << std::endl;
#endif
d.isOnlyGPGdetail = false;
d.isOnlyGPGdetail = true;
return getGPGDetails(id, d);
}
}