mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 13:07:38 +03:00
Find entry by title.
This commit is contained in:
parent
54ad927044
commit
eeafe77614
2 changed files with 20 additions and 1 deletions
|
@ -497,7 +497,18 @@ Entry* Group::findEntry(QString entryId)
|
|||
}
|
||||
}
|
||||
|
||||
return findEntryByPath(entryId);
|
||||
Entry* entry = findEntryByPath(entryId);
|
||||
if (entry) {
|
||||
return entry;
|
||||
}
|
||||
|
||||
for (Entry* entry : entriesRecursive(false)) {
|
||||
if (entry->title() == entryId) {
|
||||
return entry;
|
||||
}
|
||||
}
|
||||
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
Entry* Group::findEntryByUuid(const Uuid& uuid)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue