From d7389c6575652979584df1e64ecfca3d25f6e119 Mon Sep 17 00:00:00 2001 From: Thelie Date: Wed, 5 Jul 2023 23:47:07 +0200 Subject: [PATCH] Update 'src/main.rs' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Now it'll compile for sureā€¦ --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 7e618c2..2fd4502 100644 --- a/src/main.rs +++ b/src/main.rs @@ -220,7 +220,7 @@ async fn echo(req: Request) -> Result> { let domain = split_path[1]; let token = split_path[2]; - println!("Got the path: {} and extracted the parameters domain: {} and token: {}", split_path, domain, token); + println!("Got the path: {:?} and extracted the parameters domain: {} and token: {}", split_path, domain, token); response = generate_feed(response, domain, token).await?; } else {