From 6bff95d9bbf7b9bf5aae638a2ea4e9929ae1587e Mon Sep 17 00:00:00 2001 From: Noratrieb <48135649+Noratrieb@users.noreply.github.com> Date: Sun, 5 Oct 2025 12:05:47 +0200 Subject: [PATCH] Cleanup parameter type --- src/web.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web.rs b/src/web.rs index ad12274..b39c788 100644 --- a/src/web.rs +++ b/src/web.rs @@ -326,7 +326,7 @@ async fn index_js() -> impl IntoResponse { } impl Status { - fn to_emoji(&self) -> &'static str { + fn to_emoji(self) -> &'static str { match self { Status::Pass => "✅", Status::Error => "❌",