mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-11 07:40:21 -04:00
attempt at fixing circle cache loop. Renamed a few variables and fixed logic. Not yet fully working
This commit is contained in:
parent
83e39d8ae5
commit
bdb326a989
8 changed files with 121 additions and 106 deletions
|
@ -532,9 +532,9 @@ void IdDialog::circle_selected()
|
|||
|
||||
/* now mark all the members */
|
||||
|
||||
std::set<RsGxsId> members = details.mUnknownPeers;
|
||||
std::set<RsGxsId> members = details.mAllowedAnonPeers;
|
||||
|
||||
for(std::map<RsPgpId, std::list<RsGxsId> >::iterator it = details.mAllowedPeers.begin(); it != details.mAllowedPeers.end(); ++it)
|
||||
for(std::map<RsPgpId, std::list<RsGxsId> >::iterator it = details.mAllowedSignedPeers.begin(); it != details.mAllowedSignedPeers.end(); ++it)
|
||||
for(std::list<RsGxsId>::const_iterator it2=it->second.begin();it2!=it->second.end();++it2)
|
||||
{
|
||||
members.insert( (*it2) ) ;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue