mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 05:57:37 +03:00
SSH Agent: Fix attachment data not updating before apply
Fixes regression since #3833 was merged
This commit is contained in:
parent
92a7fe33bd
commit
9e17d52e8e
3 changed files with 41 additions and 4 deletions
|
@ -673,7 +673,11 @@ bool EditEntryWidget::getOpenSSHKey(OpenSSHKey& key, bool decrypt)
|
|||
return false;
|
||||
}
|
||||
|
||||
if (!settings.toOpenSSHKey(m_entry, key, decrypt)) {
|
||||
if (!settings.toOpenSSHKey(m_mainUi->usernameComboBox->lineEdit()->text(),
|
||||
m_mainUi->passwordEdit->text(),
|
||||
m_advancedUi->attachmentsWidget->entryAttachments(),
|
||||
key,
|
||||
decrypt)) {
|
||||
showMessage(settings.errorString(), MessageWidget::Error);
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue