SSH Agent: Fix attachment data not updating before apply

Fixes regression since #3833 was merged
This commit is contained in:
Toni Spets 2020-04-05 08:34:50 +03:00 committed by Jonathan White
parent 92a7fe33bd
commit 9e17d52e8e
3 changed files with 41 additions and 4 deletions

View file

@ -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;
}