mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-01 12:24:36 -04:00
fixed internal GRP authentication flags of edited circles
This commit is contained in:
parent
118ec492e6
commit
15dd72ec7a
1 changed files with 5 additions and 1 deletions
|
@ -449,7 +449,9 @@ void CreateCircleDialog::createCircle()
|
|||
case GxsIdChooser::KnowId:
|
||||
case GxsIdChooser::UnKnowId:
|
||||
circle.mMeta.mAuthorId = authorId;
|
||||
#ifdef DEBUG_CREATE_CIRCLE_DIALOG
|
||||
circle.mMeta.mAuthenFlags = GXS_SERV::GRP_OPTION_AUTHEN_AUTHOR_SIGN;
|
||||
|
||||
#ifdef DEBUG_CREATE_CIRCLE_DIALOG
|
||||
std::cerr << "CreateCircleDialog::createCircle() AuthorId: " << authorId;
|
||||
std::cerr << std::endl;
|
||||
#endif
|
||||
|
@ -457,6 +459,8 @@ void CreateCircleDialog::createCircle()
|
|||
break;
|
||||
case GxsIdChooser::NoId:
|
||||
case GxsIdChooser::None:
|
||||
circle.mMeta.mAuthorId.clear();
|
||||
circle.mMeta.mAuthenFlags = 0;
|
||||
default: ;
|
||||
#ifdef DEBUG_CREATE_CIRCLE_DIALOG
|
||||
std::cerr << "CreateCircleDialog::createCircle() No AuthorId Chosen!";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue