mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-07-11 17:19:40 -04:00
Remove extra check for additional URLs
This commit is contained in:
parent
8e76c30dd1
commit
663393d994
1 changed files with 4 additions and 6 deletions
|
@ -602,14 +602,12 @@ BrowserService::searchEntries(const QSharedPointer<Database>& db, const QString&
|
|||
}
|
||||
|
||||
// Search for additional URL's starting with KP2A_URL
|
||||
if (entry->attributes()->keys().contains(ADDITIONAL_URL)) {
|
||||
for (const auto& key : entry->attributes()->keys()) {
|
||||
if (key.startsWith(ADDITIONAL_URL) && handleURL(entry->attributes()->value(key), url, submitUrl)) {
|
||||
entries.append(entry);
|
||||
continue;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (!handleURL(entry->url(), url, submitUrl)) {
|
||||
continue;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue