mirror of https://github.com/keeweb/keeweb
fix #1726: search in protected fields
parent
839359a794
commit
a4881419df
|
@ -127,8 +127,8 @@ class EntrySearch {
|
|||
return context.matches && context.matches.length === find.length;
|
||||
}
|
||||
|
||||
static matchStringMultiLower(str, find, context, lower) {
|
||||
return EntrySearch.matchStringLower(str, find, context, true);
|
||||
static matchStringMultiLower(str, find, context) {
|
||||
return EntrySearch.matchStringMulti(str, find, context, true);
|
||||
}
|
||||
|
||||
static matchRegex(str, regex) {
|
||||
|
|
|
@ -15,6 +15,9 @@ Release notes
|
|||
`+` option to minimize on field copy
|
||||
`-` fixed creating files with Argon2id KDF
|
||||
|
||||
##### v1.16.8 (TBD)
|
||||
`-` fix #1726: search in protected fields
|
||||
|
||||
##### v1.16.7 (2020-12-31)
|
||||
`-` fix #1671: new lines removal issue in notes
|
||||
|
||||
|
|
Loading…
Reference in New Issue