server: cargo fmt

This commit is contained in:
Bill Thiede 2025-08-19 16:57:44 -07:00
parent 6ca2459034
commit 7f1f61dc7d

View File

@ -242,7 +242,9 @@ impl Body {
match self {
Body::Html(h) => Some(h.html.clone()),
Body::PlainText(p) => Some(format!("<pre>{}</pre>", html_escape::encode_text(&p.text))),
Body::UnhandledContentType(u) => Some(format!("<pre>{}</pre>", html_escape::encode_text(&u.text))),
Body::UnhandledContentType(u) => {
Some(format!("<pre>{}</pre>", html_escape::encode_text(&u.text)))
}
}
}