From dea0ffa021f320a9abc2111e4932d70fa0a03aef Mon Sep 17 00:00:00 2001 From: Matthew Esposito Date: Sun, 2 Feb 2025 21:56:02 -0500 Subject: [PATCH] fix(fmt) --- src/utils.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.rs b/src/utils.rs index 6fef007..a536107 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -7,6 +7,7 @@ use crate::config::{self, get_setting}; // use crate::{client::json, server::RequestExt}; use cookie::Cookie; +use htmlescape::decode_html; use hyper::{Body, Request, Response}; use log::error; use once_cell::sync::Lazy; @@ -22,7 +23,6 @@ use std::str::FromStr; use std::string::ToString; use time::{macros::format_description, Duration, OffsetDateTime}; use url::Url; -use htmlescape::decode_html; /// Write a message to stderr on debug mode. This function is a no-op on /// release code.