mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-04-03 12:57:36 +03:00
fix: Matching against domain goes too far #1820
This commit is contained in:
parent
7f2fda0327
commit
e780f8a3f0
1 changed files with 1 additions and 1 deletions
|
@ -154,7 +154,7 @@ class SearchHelper {
|
|||
// subdomain.domain.org
|
||||
stringToCheck.endsWith(".$word", !searchParameters.caseSensitive) ||
|
||||
// https://domain.org
|
||||
stringToCheck.endsWith("\\/$word", !searchParameters.caseSensitive)
|
||||
stringToCheck.endsWith("/$word", !searchParameters.caseSensitive)
|
||||
// Don't allow mydomain.org
|
||||
})
|
||||
return true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue