mirror of
https://github.com/ankitects/anki.git
synced 2026-01-13 14:03:55 -05:00
update write_regex
This commit is contained in:
parent
87f8eb7ab2
commit
2725dc4ce9
1 changed files with 1 additions and 1 deletions
|
|
@ -828,7 +828,7 @@ impl SqlWriter<'_> {
|
|||
|
||||
fn write_regex(&mut self, word: &str, no_combining: bool) -> Result<()> {
|
||||
let flds_expr = if no_combining {
|
||||
"coalesce(without_combining(n.flds), n.flds)"
|
||||
"coalesce(process_text(n.flds, 1), n.flds)"
|
||||
} else {
|
||||
"n.flds"
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue