fix: escape colons in term query (#159) (#173) #44
Annotations
2 warnings
release-please
The following actions uses Node.js version which is deprecated and will be forced to run on node20: GoogleCloudPlatform/release-please-action@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
single-character string constant used as pattern:
src/server/run/hpo_terms.rs#L298
warning: single-character string constant used as pattern
--> src/server/run/hpo_terms.rs:298:37
|
298 | let name = if name.contains(":") {
| ^^^ help: consider using a `char`: `':'`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_char_pattern
= note: `#[warn(clippy::single_char_pattern)]` on by default
|