mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-05 05:12:51 -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::KnowId:
|
||||||
case GxsIdChooser::UnKnowId:
|
case GxsIdChooser::UnKnowId:
|
||||||
circle.mMeta.mAuthorId = authorId;
|
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 << "CreateCircleDialog::createCircle() AuthorId: " << authorId;
|
||||||
std::cerr << std::endl;
|
std::cerr << std::endl;
|
||||||
#endif
|
#endif
|
||||||
|
@ -457,6 +459,8 @@ void CreateCircleDialog::createCircle()
|
||||||
break;
|
break;
|
||||||
case GxsIdChooser::NoId:
|
case GxsIdChooser::NoId:
|
||||||
case GxsIdChooser::None:
|
case GxsIdChooser::None:
|
||||||
|
circle.mMeta.mAuthorId.clear();
|
||||||
|
circle.mMeta.mAuthenFlags = 0;
|
||||||
default: ;
|
default: ;
|
||||||
#ifdef DEBUG_CREATE_CIRCLE_DIALOG
|
#ifdef DEBUG_CREATE_CIRCLE_DIALOG
|
||||||
std::cerr << "CreateCircleDialog::createCircle() No AuthorId Chosen!";
|
std::cerr << "CreateCircleDialog::createCircle() No AuthorId Chosen!";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue