From 57af17cfa6e08a6fe9bf6d73d401af17dccfa3bb Mon Sep 17 00:00:00 2001 From: Guillaume Pasquet Date: Thu, 3 Mar 2022 23:18:08 +0000 Subject: Introduce JSONPath and potentially break old stuff. --- src/executor.rs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'src/executor.rs') diff --git a/src/executor.rs b/src/executor.rs index 15704c2..eccab39 100644 --- a/src/executor.rs +++ b/src/executor.rs @@ -89,7 +89,7 @@ impl Executor { arg_filter: &Option, ) -> Result { if let Some(filter) = arg_filter { - return Ok(BarbFilter::new(None, filter.to_string()).apply(&body)?); + return Ok(BarbFilter::from_path(filter.to_string()).apply(&body)?); } else if bfile.filters().len() > 0 { let mut end_body: String = body.clone(); for filter in bfile.filters().iter() { @@ -144,11 +144,7 @@ impl Executor { } output.end_resp_hdr(); - output.body(self.apply_filters( - &bfile, - response.into_string().unwrap(), - filter, - )?); + output.body(self.apply_filters(&bfile, response.into_string().unwrap(), filter)?); Ok(()) } -- cgit v1.2.3