aboutsummaryrefslogtreecommitdiff
path: root/server/src/routes/ui/mod.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2023-01-22 14:10:15 +0100
committermetamuffin <metamuffin@disroot.org>2023-01-22 14:10:15 +0100
commited870d1fc04891e79ab1d40be473a07810a62e69 (patch)
tree9955a00484b3311dfd4ea8121b7b4bb3654c0f86 /server/src/routes/ui/mod.rs
parentec76bbe5398f51ffa55bfd315b30c0a07245d4e6 (diff)
downloadjellything-ed870d1fc04891e79ab1d40be473a07810a62e69.tar
jellything-ed870d1fc04891e79ab1d40be473a07810a62e69.tar.bz2
jellything-ed870d1fc04891e79ab1d40be473a07810a62e69.tar.zst
clean again
Diffstat (limited to 'server/src/routes/ui/mod.rs')
-rw-r--r--server/src/routes/ui/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/routes/ui/mod.rs b/server/src/routes/ui/mod.rs
index e062a68..ee2b4f8 100644
--- a/server/src/routes/ui/mod.rs
+++ b/server/src/routes/ui/mod.rs
@@ -19,7 +19,7 @@ pub mod style;
pub struct HtmlTemplate<'a>(pub markup::DynRender<'a>);
impl<'r> Responder<'r, 'static> for HtmlTemplate<'_> {
- fn respond_to(self, req: &'r Request<'_>) -> response::Result<'static> {
+ fn respond_to(self, _req: &'r Request<'_>) -> response::Result<'static> {
let mut out = String::new();
self.0.render(&mut out).unwrap();
Response::build()