From 22fd4e40921397af7505eb932d6020a9000bdb64 Mon Sep 17 00:00:00 2001 From: csoler Date: Wed, 28 Oct 2015 18:11:27 -0400 Subject: [PATCH] fixed bug causing signed lobby to refuse login on double click --- retroshare-gui/src/gui/ChatLobbyWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/retroshare-gui/src/gui/ChatLobbyWidget.cpp b/retroshare-gui/src/gui/ChatLobbyWidget.cpp index 298e172b6..d5b42bd92 100644 --- a/retroshare-gui/src/gui/ChatLobbyWidget.cpp +++ b/retroshare-gui/src/gui/ChatLobbyWidget.cpp @@ -795,7 +795,7 @@ void ChatLobbyWidget::subscribeChatLobbyAtItem(QTreeWidgetItem *item) if(!rsIdentity->getIdDetails(gxs_id,idd)) return ; - if(flags & RS_CHAT_LOBBY_FLAGS_PGP_SIGNED) + if( (flags & RS_CHAT_LOBBY_FLAGS_PGP_SIGNED) && !idd.mPgpLinked) { QMessageBox::warning(NULL,tr("Default identity is anonymous"),tr("You cannot join this lobby with your default identity, since it is anonymous and the lobby forbids it.")) ; return ;