Skip to content
This repository has been archived by the owner on Oct 19, 2024. It is now read-only.

Commit

Permalink
Ignore spaces when parsing facets (#846)
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianVennen authored Jan 10, 2024
1 parent 9d54c41 commit 9c70c35
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/routes/v2/projects.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ fn parse_facet(facet: &String) -> Option<(String, String, String)> {
val.push_str(&iterator.collect::<String>());
return Some((key, operator, val));
}
' ' => continue,
_ => key.push(char),
}
}
Expand Down

0 comments on commit 9c70c35

Please sign in to comment.