mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 13:37:43 +03:00
Add search 'by-path' url for browser
This commit is contained in:
parent
0c5dd1556a
commit
eb6f0eb346
5 changed files with 52 additions and 3 deletions
|
@ -1009,8 +1009,10 @@ bool BrowserService::removeFirstDomain(QString& hostname)
|
|||
bool BrowserService::handleEntry(Entry* entry, const QString& url, const QString& submitUrl)
|
||||
{
|
||||
// Use this special scheme to find entries by UUID
|
||||
if (url.startsWith("keepassxc://")) {
|
||||
return ("keepassxc://by-uuid/" + entry->uuidToHex()) == url;
|
||||
if (url.startsWith("keepassxc://by-uuid/")) {
|
||||
return url.endsWith("by-uuid/" + entry->uuidToHex());
|
||||
} else if (url.startsWith("keepassxc://by-path/")) {
|
||||
return url.endsWith("by-path/" + entry->path());
|
||||
}
|
||||
return handleURL(entry->url(), url, submitUrl);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue