mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-03 04:57:38 +03:00
chore(clippy): fix lint
This commit is contained in:
parent
997cd8f829
commit
9013e589dd
1 changed files with 1 additions and 1 deletions
|
@ -1029,7 +1029,7 @@ pub fn redirect(path: &str) -> Response<Body> {
|
|||
|
||||
/// Renders a generic error landing page.
|
||||
pub async fn error(req: Request<Body>, msg: &str) -> Result<Response<Body>, String> {
|
||||
error!("Error page rendered: {}", msg.split("|").next().unwrap_or_default());
|
||||
error!("Error page rendered: {}", msg.split('|').next().unwrap_or_default());
|
||||
let url = req.uri().to_string();
|
||||
let body = ErrorTemplate {
|
||||
msg: msg.to_string(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue