Comment History

This commit is contained in:
spikecodes 2020-11-23 11:33:43 -08:00
parent a8f7fa6941
commit 295d1788d8
7 changed files with 45 additions and 17 deletions

View file

@ -116,7 +116,7 @@ pub async fn fetch_posts(url: String, fallback_title: String) -> Result<(Vec<Pos
posts.push(Post {
title: if title.is_empty() { fallback_title.to_owned() } else { title },
community: val(post, "subreddit").await,
body: String::new(),
body: val(post, "body").await,
author: val(post, "author").await,
score: if score > 1000 { format!("{}k", score / 1000) } else { score.to_string() },
media: img,