Fix debug log in post.rs

This commit is contained in:
spikecodes
2021-12-27 19:56:37 -08:00
parent db3196df5a
commit f9b3981448
3 changed files with 2 additions and 4 deletions

View File

@ -105,8 +105,6 @@ async fn parse_post(json: &serde_json::Value) -> Post {
rewrite_urls(&val(post, "selftext_html")).replace("\\", "")
};
dbg!(val(post, "permalink"));
// Build a post using data parsed from Reddit post API
Post {
id: val(post, "id"),