Fix debug log in post.rs

This commit is contained in:
spikecodes 2021-12-27 19:56:37 -08:00
parent db3196df5a
commit f9b3981448
No known key found for this signature in database
GPG key ID: 004CECFF9B463BCB
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"),