fixed bug causing signed lobby to refuse login on double click

This commit is contained in:
csoler 2015-10-28 18:11:27 -04:00
parent 459cbc6c8e
commit 22fd4e4092

View File

@ -795,7 +795,7 @@ void ChatLobbyWidget::subscribeChatLobbyAtItem(QTreeWidgetItem *item)
if(!rsIdentity->getIdDetails(gxs_id,idd)) if(!rsIdentity->getIdDetails(gxs_id,idd))
return ; 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.")) ; 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 ; return ;