From 7f1f61dc7da8cb15fe4498867f219bcc60430c52 Mon Sep 17 00:00:00 2001 From: Bill Thiede Date: Tue, 19 Aug 2025 16:57:44 -0700 Subject: [PATCH] server: cargo fmt --- server/src/graphql.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/server/src/graphql.rs b/server/src/graphql.rs index 39a4af2..ce0f7bb 100644 --- a/server/src/graphql.rs +++ b/server/src/graphql.rs @@ -242,7 +242,9 @@ impl Body { match self { Body::Html(h) => Some(h.html.clone()), Body::PlainText(p) => Some(format!("
{}
", html_escape::encode_text(&p.text))), - Body::UnhandledContentType(u) => Some(format!("
{}
", html_escape::encode_text(&u.text))), + Body::UnhandledContentType(u) => { + Some(format!("
{}
", html_escape::encode_text(&u.text))) + } } }