mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04:00
Fix confirmation allowing access to all entries.
This commit is contained in:
parent
e2ba754f91
commit
47d7598e99
@ -257,7 +257,7 @@ QList<KeepassHttpProtocol::Entry> Service::findMatchingEntries(const QString& /*
|
||||
|
||||
int res = dlg.exec();
|
||||
if (dlg.remember()) {
|
||||
Q_FOREACH (Entry * entry, pwEntries) {
|
||||
Q_FOREACH (Entry * entry, pwEntriesToConfirm) {
|
||||
EntryConfig config;
|
||||
config.load(entry);
|
||||
if (res == QDialog::Accepted) {
|
||||
@ -275,7 +275,7 @@ QList<KeepassHttpProtocol::Entry> Service::findMatchingEntries(const QString& /*
|
||||
}
|
||||
}
|
||||
if (res == QDialog::Accepted) {
|
||||
Q_FOREACH (Entry * entry, pwEntries)
|
||||
Q_FOREACH (Entry * entry, pwEntriesToConfirm)
|
||||
result << prepareEntry(entry);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user