From 8785bc95f57c5b99263e5211f3dde29989757121 Mon Sep 17 00:00:00 2001 From: spikecodes <19519553+spikecodes@users.noreply.github.com> Date: Tue, 9 Feb 2021 21:54:55 -0800 Subject: [PATCH] Fix extra slashes in post bodies --- src/post.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/post.rs b/src/post.rs index 31d3be7..b207661 100644 --- a/src/post.rs +++ b/src/post.rs @@ -81,7 +81,7 @@ async fn parse_post(json: &serde_json::Value) -> Post { id: val(post, "id"), title: val(post, "title"), community: val(post, "subreddit"), - body: rewrite_url(&val(post, "selftext_html")), + body: rewrite_urls(&val(post, "selftext_html")).replace("\\", ""), author: Author { name: val(post, "author"), flair: Flair { @@ -151,7 +151,7 @@ async fn parse_comments(json: &serde_json::Value) -> Vec { let (rel_time, created) = time(unix_time); let score = comment["data"]["score"].as_i64().unwrap_or(0); - let body = rewrite_url(&val(&comment, "body_html")); + let body = rewrite_urls(&val(&comment, "body_html")); let replies: Vec = if comment["data"]["replies"].is_object() { parse_comments(&comment["data"]["replies"]).await