add i2psam3

This commit is contained in:
sehraf 2020-10-25 12:50:55 +01:00
parent 42bc295d1a
commit 10189ba4d0
No known key found for this signature in database
GPG key ID: DF09F6EAE356B2C6
21 changed files with 1543 additions and 85 deletions

View file

@ -539,12 +539,12 @@ void GenCertDialog::genPerson()
std::string hl = ui.hiddenaddr_input->text().toStdString();
uint16_t port = ui.hiddenport_spinBox->value();
bool useBob = ui.cbUseBob->isChecked();
bool useI2p = ui.cbUseBob->isChecked();
if (useBob && hl.empty())
if (useI2p && hl.empty())
hl = "127.0.0.1";
RsInit::SetHiddenLocation(hl, port, useBob); /* parses it */
RsInit::SetHiddenLocation(hl, port, useI2p); /* parses it */
}