mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04:00
Fix entry partial matching rules.
This commit is contained in:
parent
8f33c5235b
commit
53b30e267c
@ -184,10 +184,10 @@ QList<Entry*> Service::searchEntries(const QString &text)
|
||||
QString url = entry->url();
|
||||
|
||||
//Filter to match hostname in Title and Url fields
|
||||
if ( hostname.contains(title)
|
||||
|| hostname.contains(url)
|
||||
|| (matchUrlScheme(title) && hostname.contains(QUrl(title).host()))
|
||||
|| (matchUrlScheme(url) && hostname.contains(QUrl(url).host())) )
|
||||
if ( (!title.isEmpty() && hostname.contains(title))
|
||||
|| (!url.isEmpty() && hostname.contains(url))
|
||||
|| (matchUrlScheme(title) && hostname.endsWith(QUrl(title).host()))
|
||||
|| (matchUrlScheme(url) && hostname.endsWith(QUrl(url).host())) )
|
||||
entries.append(entry);
|
||||
}
|
||||
} while(entries.isEmpty() && removeFirstDomain(hostname));
|
||||
|
Loading…
Reference in New Issue
Block a user