Add "parent directory match" priority between exact and host match

This commit is contained in:
m5w6 2021-09-04 23:41:37 +02:00 committed by Jonathan White
parent 34ed63f495
commit 9aec84dee7
2 changed files with 11 additions and 3 deletions

View file

@ -948,6 +948,11 @@ int BrowserService::sortPriority(const QStringList& urls, const QString& siteUrl
return 90;
}
// Parent directory match
if (url.isParentOf(siteUrl) || url.isParentOf(formUrl)) {
return 85;
}
// Match without path (ie, FQDN match), form url prioritizes lower than site url
if (url.host() == siteUrl.host()) {
return 80;