From 91bebcd4e1de1f88b2f092f842d553c53811601c Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Wed, 30 Mar 2022 23:58:15 +0100 Subject: [PATCH] actix: Drop a leftover dbg Signed-off-by: Ian Jackson --- daemon/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/main.rs b/daemon/main.rs index 4c6c084d..fbc40c1d 100644 --- a/daemon/main.rs +++ b/daemon/main.rs @@ -399,7 +399,7 @@ fn src_ct_fixup(mut resp: ServiceResponse) -> ServiceResponse { // We match on match_pattern() rather than path(), because // empirically, path() seems to be sometimes partially URL-encoded. - if dbg!(resp.request().match_pattern().as_deref()) != Some(FILES_PATH) { + if resp.request().match_pattern().as_deref() != Some(FILES_PATH) { return resp } -- 2.30.2