mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-28 08:59:37 -05:00
Display the name of short invites properly
Instead of [Unknown], since the name is actually in the short invite.
This commit is contained in:
parent
f125539d79
commit
63ee463086
@ -599,7 +599,7 @@ void ConnectFriendWizard::initializePage(int id)
|
||||
if(mIsShortInvite)
|
||||
{
|
||||
if(ui->nameEdit->text().isEmpty())
|
||||
ui->nameEdit->setText(tr("[Unknown]"));
|
||||
ui->nameEdit->setText(QString::fromUtf8(peerDetails.name.c_str()));
|
||||
ui->addKeyToKeyring_CB->setChecked(false);
|
||||
ui->addKeyToKeyring_CB->setEnabled(false);
|
||||
ui->signersEdit->hide();
|
||||
|
Loading…
Reference in New Issue
Block a user