diff options
author | Tyler Murphy <tylermurphy534@gmail.com> | 2023-01-28 14:22:29 -0500 |
---|---|---|
committer | Tyler Murphy <tylermurphy534@gmail.com> | 2023-01-28 14:22:29 -0500 |
commit | 7e07687b5ec14bd788b8d2dd3f0a7ead83842fd4 (patch) | |
tree | 795df5d4e91e44e50214437dc0c77f25db66b870 /src/main.rs | |
parent | docker (diff) | |
download | xssbook-7e07687b5ec14bd788b8d2dd3f0a7ead83842fd4.tar.gz xssbook-7e07687b5ec14bd788b8d2dd3f0a7ead83842fd4.tar.bz2 xssbook-7e07687b5ec14bd788b8d2dd3f0a7ead83842fd4.zip |
clippy my beloved
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index ebce57e..9ccc45b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -28,9 +28,9 @@ async fn log<B>(mut req: Request<B>, next: Next<B>) -> Response where return next.run(req).await }; - console::log(info.ip().clone(), req.method().clone(), req.uri().clone(), None, None).await; + console::log(info.ip(), req.method().clone(), req.uri().clone(), None, None).await; - return next.run(req).await + next.run(req).await } async fn not_found() -> Response { |