mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-25 23:49:35 -05:00
Switched BanList sharing to only your own list. (was OWN + FRIENDS lists)
- This data is not used at the moment, so just reducing data before release. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4875 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
15ea61caa3
commit
8756b0d75d
@ -408,9 +408,9 @@ int p3BanList::sendBanSet(std::string peerid)
|
||||
std::map<uint32_t, BanListPeer>::iterator it;
|
||||
for(it = mBanSet.begin(); it != mBanSet.end(); it++)
|
||||
{
|
||||
if (it->second.level > RSBANLIST_SOURCE_FRIEND)
|
||||
if (it->second.level >= RSBANLIST_SOURCE_FRIEND)
|
||||
{
|
||||
continue; // only share OWN and FRIENDS.
|
||||
continue; // only share OWN for the moment.
|
||||
}
|
||||
|
||||
RsTlvBanListEntry bi;
|
||||
|
Loading…
Reference in New Issue
Block a user