mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-13 08:35:45 -04:00
fixed bug that caused user to lose own channel if they unsubscribed it
removed channel file copying added tool tip for key sharing and tool tip for read status git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3660 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
0be24268f7
commit
e187204437
3 changed files with 6 additions and 98 deletions
|
@ -930,8 +930,8 @@ void p3GroupDistrib::publishDistribGroups()
|
|||
std::map<std::string, GroupInfo>::iterator it;
|
||||
for(it = mGroups.begin(); it != mGroups.end(); it++)
|
||||
{
|
||||
/* if subscribed or listener -> do stuff */
|
||||
if (it->second.flags & (RS_DISTRIB_SUBSCRIBED))
|
||||
/* if subscribed or listener or admin -> then send it to be published by cache */
|
||||
if ((it->second.flags & RS_DISTRIB_SUBSCRIBED) || (it->second.flags & RS_DISTRIB_ADMIN))
|
||||
{
|
||||
#ifdef DISTRIB_DEBUG
|
||||
std::cerr << "p3GroupDistrib::publishDistribGroups() Saving Group: " << it->first;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue