mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-07-14 10:39:35 -04:00
Fix confirmation allowing access to all entries.
This commit is contained in:
parent
e2ba754f91
commit
47d7598e99
1 changed files with 2 additions and 2 deletions
|
@ -257,7 +257,7 @@ QList<KeepassHttpProtocol::Entry> Service::findMatchingEntries(const QString& /*
|
||||||
|
|
||||||
int res = dlg.exec();
|
int res = dlg.exec();
|
||||||
if (dlg.remember()) {
|
if (dlg.remember()) {
|
||||||
Q_FOREACH (Entry * entry, pwEntries) {
|
Q_FOREACH (Entry * entry, pwEntriesToConfirm) {
|
||||||
EntryConfig config;
|
EntryConfig config;
|
||||||
config.load(entry);
|
config.load(entry);
|
||||||
if (res == QDialog::Accepted) {
|
if (res == QDialog::Accepted) {
|
||||||
|
@ -275,7 +275,7 @@ QList<KeepassHttpProtocol::Entry> Service::findMatchingEntries(const QString& /*
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (res == QDialog::Accepted) {
|
if (res == QDialog::Accepted) {
|
||||||
Q_FOREACH (Entry * entry, pwEntries)
|
Q_FOREACH (Entry * entry, pwEntriesToConfirm)
|
||||||
result << prepareEntry(entry);
|
result << prepareEntry(entry);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue