mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 13:07:38 +03:00
Simplify the comparison
This commit is contained in:
parent
d2e76058cd
commit
08a911466e
1 changed files with 7 additions and 2 deletions
|
@ -1052,8 +1052,13 @@ bool BrowserService::handleURL(const QString& entryUrl, const QString& url, cons
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Filter to match hostname in URL field
|
// Match the base domain
|
||||||
if (siteQUrl.host().endsWith(entryQUrl.host()) && baseDomain(siteQUrl.host()) == baseDomain(entryQUrl.host())) {
|
if (baseDomain(siteQUrl.host()) != baseDomain(entryQUrl.host())) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Match the subdomains with the limited wildcard
|
||||||
|
if (siteQUrl.host().endsWith(entryQUrl.host())) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue