mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2026-03-11 08:54:48 +00:00
Parse TOTP input string before first save
This commit is contained in:
parent
d3ed14ebb7
commit
3640053415
1 changed files with 1 additions and 1 deletions
|
|
@ -49,7 +49,7 @@ void SetupTotpDialog::setupTotp()
|
|||
}
|
||||
|
||||
quint8 step = m_ui->stepSpinBox->value();
|
||||
QString seed = m_ui->seedEdit->text();
|
||||
QString seed = QTotp::parseOtpString(m_ui->seedEdit->text(), digits, step);
|
||||
m_entry->setTotp(seed, step, digits);
|
||||
emit m_parent->entrySelectionChanged();
|
||||
close();
|
||||
|
|
|
|||
Loading…
Reference in a new issue