fix(katana): lower short string & append last character

This commit is contained in:
tretrauit 2024-01-25 01:15:44 +07:00
parent b4888c1d72
commit 4274e8539a

View File

@ -195,6 +195,7 @@ pub fn regexify_text(text: &String) -> String {
}
// Filter for short string.
if short_text && !ascii_text.contains(|c: char| c.is_whitespace()) {
ascii_text = ascii_text.to_lowercase();
regex.push_str("^");
let mut request_quantifier: bool = false;
let mut regex_any: bool = false;
@ -210,6 +211,7 @@ pub fn regexify_text(text: &String) -> String {
continue;
} else if i == ascii_text.len() - 1 {
regex.push_str(".*");
regex.push(char);
}
if regex_any {
if char == ']' {