From c8c9407b80ec4c3bf1003950d7d2a71c4f97f926 Mon Sep 17 00:00:00 2001 From: Jay Palat Date: Fri, 17 May 2024 13:00:00 -0400 Subject: [PATCH] Fixed image name typo. --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 9100adf..4fb8de6 100644 --- a/src/main.rs +++ b/src/main.rs @@ -107,7 +107,7 @@ fn main(req: Request) -> Result { .with_content_type(mime::TEXT_HTML_UTF_8) .with_body(include_str!("static_site/hosfe.lt/public/posts/adblocker/index.html"))) }, - "/images/honeycomnd.png" => { + "/images/honeycomb.png" => { Ok(Response::from_status(StatusCode::OK) .with_content_type(mime::IMAGE_PNG) .with_body(include_bytes!("static_site/hosfe.lt/public/images/honeycomb.png").as_slice()))