mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 21:47:38 +03:00
Fix base domain matching
This commit is contained in:
parent
6f9907a3cb
commit
d2e76058cd
2 changed files with 3 additions and 2 deletions
|
@ -1053,7 +1053,7 @@ bool BrowserService::handleURL(const QString& entryUrl, const QString& url, cons
|
|||
}
|
||||
|
||||
// Filter to match hostname in URL field
|
||||
if (siteQUrl.host().endsWith(entryQUrl.host())) {
|
||||
if (siteQUrl.host().endsWith(entryQUrl.host()) && baseDomain(siteQUrl.host()) == baseDomain(entryQUrl.host())) {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue