mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-01-29 07:43:36 -05:00
Fix Match URL scheme setting
This commit is contained in:
parent
7592f40de2
commit
57e60681f2
@ -395,7 +395,8 @@ QList<Entry*> BrowserService::searchEntries(Database* db, const QString& hostnam
|
|||||||
QUrl qUrl(url);
|
QUrl qUrl(url);
|
||||||
|
|
||||||
// Ignore entry if port or scheme defined in the URL doesn't match
|
// Ignore entry if port or scheme defined in the URL doesn't match
|
||||||
if ((entryQUrl.port() > 0 && entryQUrl.port() != qUrl.port()) || entryScheme.compare(qUrl.scheme()) != 0) {
|
if ((entryQUrl.port() > 0 && entryQUrl.port() != qUrl.port()) ||
|
||||||
|
(BrowserSettings::matchUrlScheme() && entryScheme.compare(qUrl.scheme()) != 0)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user