mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-06 06:27:40 +03:00
Fix #126
This commit is contained in:
parent
9cfab348eb
commit
dd67b52199
6 changed files with 9 additions and 14 deletions
|
@ -495,13 +495,8 @@ pub fn redirect(path: String) -> Response {
|
|||
.build()
|
||||
}
|
||||
|
||||
pub async fn error(msg: String) -> tide::Result {
|
||||
let body = ErrorTemplate {
|
||||
msg,
|
||||
prefs: Preferences::default(),
|
||||
}
|
||||
.render()
|
||||
.unwrap_or_default();
|
||||
pub async fn error(req: Request<()>, msg: String) -> tide::Result {
|
||||
let body = ErrorTemplate { msg, prefs: prefs(req) }.render().unwrap_or_default();
|
||||
|
||||
Ok(Response::builder(404).content_type("text/html").body(body).build())
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue