Highlight Post Authors in Comments

This commit is contained in:
spikecodes 2020-12-21 08:38:24 -08:00
parent b1071e9579
commit b1a572072c
5 changed files with 11 additions and 4 deletions

View file

@ -133,7 +133,7 @@ async fn parse_post(json: serde_json::Value) -> Result<Post, &'static str> {
} else {
"white".to_string()
},
)
),
};
Ok(post)

View file

@ -33,7 +33,9 @@ pub async fn render(sub_name: String, sort: Option<String>, ends: (Option<String
},
};
let sub_result = if !&sub_name.contains("+") { subreddit(&sub_name).await } else {
let sub_result = if !&sub_name.contains("+") {
subreddit(&sub_name).await
} else {
Ok(Subreddit {
name: String::new(),
title: String::new(),