mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 13:07:38 +03:00
FdoSecrets: fix all exposed entries are returned if search with empty terms
This commit is contained in:
parent
8459a216a5
commit
3ffeab4c41
1 changed files with 5 additions and 0 deletions
|
@ -242,6 +242,11 @@ namespace FdoSecrets
|
|||
terms << attributeToTerm(it.key(), it.value());
|
||||
}
|
||||
|
||||
// empty terms causes EntrySearcher returns everything
|
||||
if (terms.isEmpty()) {
|
||||
return QList<Item*>{};
|
||||
}
|
||||
|
||||
QList<Item*> items;
|
||||
const auto foundEntries = EntrySearcher().search(terms, m_exposedGroup);
|
||||
items.reserve(foundEntries.size());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue