This commit is contained in:
spikecodes 2021-02-20 18:36:30 -08:00
parent 9cfab348eb
commit dd67b52199
No known key found for this signature in database
GPG key ID: 004CECFF9B463BCB
6 changed files with 9 additions and 14 deletions

View file

@ -74,7 +74,7 @@ pub async fn page(req: Request<()>) -> tide::Result {
prefs: prefs(req),
})
}
Err(msg) => error(msg).await,
Err(msg) => error(req, msg).await,
}
}
@ -140,7 +140,7 @@ pub async fn wiki(req: Request<()>) -> tide::Result {
page,
prefs: prefs(req),
}),
Err(msg) => error(msg).await,
Err(msg) => error(req, msg).await,
}
}