From 459cbc6c8e950f13481af2c1f0c039618152383e Mon Sep 17 00:00:00 2001 From: csoler Date: Wed, 28 Oct 2015 18:07:43 -0400 Subject: [PATCH] fixed bug causing forum posts to require PGP-signed ID on PGP-favored forums --- retroshare-gui/src/gui/gxsforums/CreateGxsForumMsg.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/retroshare-gui/src/gui/gxsforums/CreateGxsForumMsg.cpp b/retroshare-gui/src/gui/gxsforums/CreateGxsForumMsg.cpp index bacf1349f..d8b728888 100644 --- a/retroshare-gui/src/gui/gxsforums/CreateGxsForumMsg.cpp +++ b/retroshare-gui/src/gui/gxsforums/CreateGxsForumMsg.cpp @@ -123,10 +123,7 @@ void CreateGxsForumMsg::newMsg() /* fill in the available OwnIds for signing */ std::cerr << "Initing ID chooser. Sign flags = " << std::hex << mForumMeta.mSignFlags << std::dec << std::endl; - if(mForumMeta.mSignFlags & GXS_SERV::FLAG_AUTHOR_AUTHENTICATION_GPG) - ui.idChooser->loadIds(IDCHOOSER_ID_REQUIRED | IDCHOOSER_NON_ANONYMOUS, RsGxsId()); - else - ui.idChooser->loadIds(IDCHOOSER_ID_REQUIRED, RsGxsId()); + ui.idChooser->loadIds(IDCHOOSER_ID_REQUIRED, RsGxsId()); if (mForumId.isNull()) { mStateHelper->setActive(CREATEGXSFORUMMSG_FORUMINFO, false);