Fix subreddit sorting and media

This commit is contained in:
spikecodes 2021-01-30 21:46:35 -08:00
parent 1653d4fb4c
commit bfcc4c985d
No known key found for this signature in database
GPG key ID: 004CECFF9B463BCB
2 changed files with 2 additions and 2 deletions

View file

@ -44,7 +44,7 @@ pub async fn page(req: HttpRequest) -> HttpResponse {
front_page.to_owned()
});
let path = format!("/r/{}.json?{}", sub, req.query_string());
let path = format!("/r/{}/{}.json?{}", sub, sort, req.query_string());
match fetch_posts(&path, String::new()).await {
Ok((posts, after)) => {