fix(config): disable 'search_trigger' by default. Fix #925
This commit is contained in:
parent
a143d951f8
commit
35ed59bd23
|
@ -271,7 +271,7 @@ impl Config for ResolvedConfig {
|
||||||
match self.parsed.search_trigger.as_deref() {
|
match self.parsed.search_trigger.as_deref() {
|
||||||
Some("OFF") | Some("off") => None,
|
Some("OFF") | Some("off") => None,
|
||||||
Some(x) => Some(x.to_string()),
|
Some(x) => Some(x.to_string()),
|
||||||
None => Some("jkj".to_string()),
|
None => None,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user