Patch broken homepage sorting

This commit is contained in:
spikecodes 2021-03-18 08:51:31 -07:00
parent 3c5b4037e2
commit 467342edf4
No known key found for this signature in database
GPG key ID: 004CECFF9B463BCB
2 changed files with 3 additions and 3 deletions

View file

@ -217,9 +217,9 @@ async fn main() {
app.at("/:id").get(|req: Request<Body>| {
async {
match req.param("id") {
match req.param("id").as_deref() {
// Sort front page
// Some("best") | Some("hot") | Some("new") | Some("top") | Some("rising") | Some("controversial") => subreddit::community(req).await,
Some("best") | Some("hot") | Some("new") | Some("top") | Some("rising") | Some("controversial") => subreddit::community(req).await,
// Short link for post
Some(id) if id.len() > 4 && id.len() < 7 => post::item(req).await,
// Error message for unknown pages