mirror of
https://github.com/microsoft/regorus.git
synced 2026-08-05 02:16:11 +00:00
fix: C# EvalRule (#387)
- Fix EvalRule to call EvalRule instead of EvalQuery - Also fix clippy errors Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com>
This commit is contained in:
committed by
GitHub
parent
2749e820c4
commit
ab93c07773
@@ -224,7 +224,7 @@ fn urlquery_decode(
|
||||
let mut query_str = "".to_owned();
|
||||
for (k, v) in url.query_pairs() {
|
||||
query_str += &k;
|
||||
if v != "" {
|
||||
if !v.is_empty() {
|
||||
query_str += "=";
|
||||
query_str += &v;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user