removed re-parsing of certificate

This commit is contained in:
csoler 2022-02-12 18:32:36 +01:00
parent 24d5fc9eca
commit 2428ebf6c3
2 changed files with 1 additions and 16 deletions

View File

@ -207,8 +207,7 @@ HomePage::~HomePage()
void HomePage::getOwnCert(QString& invite,QString& description) const
{
RsPeerDetails detail,parsed_details;
RsPeerDetails detail;
if (!rsPeers->getPeerDetails(rsPeers->getOwnId(), detail))
{
@ -235,19 +234,9 @@ void HomePage::getOwnCert(QString& invite,QString& description) const
std::string short_invite;
rsPeers->getShortInvite(short_invite,rsPeers->getOwnId(),invite_flags | RetroshareInviteFlags::RADIX_FORMAT);
invite = QString::fromStdString(short_invite);
uint32_t err;
if(!rsPeers->parseShortInvite(short_invite,parsed_details,err))
std::cerr << "Something unexpected happenned while re-parsing a cert just created: error " << err << std::endl;
}
else
{
invite = QString::fromStdString(rsPeers->GetRetroshareInvite(detail.id,invite_flags));
uint32_t err;
if(!rsPeers->loadDetailsFromStringCert(invite.toStdString(),parsed_details,err))
std::cerr << "Something unexpected happenned while re-parsing a cert just created: error " << err << std::endl;
}
bool include_extra_locators = mIncludeIPHistoryact->isChecked();
description = ConfCertDialog::getCertificateDescription(detail,false,!mUseOldFormatact->isChecked(),include_extra_locators);

View File

@ -303,13 +303,9 @@ QString ConfCertDialog::getCertificateDescription(const RsPeerDetails& detail,bo
QString infotext;
if(use_short_format)
{
infotext += tr("<p>This Retroshare ID contains:") ;
}
else
{
infotext += tr("<p>This certificate contains:") ;
}
infotext += "<UL>" ;