From 19914b7f20b889ffacf756aa3f3ab8311ee5fc52 Mon Sep 17 00:00:00 2001 From: freedit-dev Date: Fri, 15 Nov 2024 08:57:06 +0000 Subject: [PATCH] fix Code blocks err #227 --- src/utils.rs | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/src/utils.rs b/src/utils.rs index 72ef56d..46095b2 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -376,17 +376,7 @@ impl Post { let awards = Awards::parse(&data["all_awardings"]); // selftext_html is set for text posts when browsing. - let mut body = { - let selftext = val(post, "selftext"); - if selftext.contains("```") { - let mut html_output = String::new(); - let parser = pulldown_cmark::Parser::new(&selftext); - pulldown_cmark::html::push_html(&mut html_output, parser); - rewrite_urls(&html_output) - } else { - rewrite_urls(&val(post, "selftext_html")) - } - }; + let mut body = rewrite_urls(&val(post, "selftext_html")); if body.is_empty() { body = rewrite_urls(&val(post, "body_html")); } @@ -730,7 +720,15 @@ pub async fn parse_post(post: &Value) -> Post { get_setting("REDLIB_PUSHSHIFT_FRONTEND").unwrap_or_else(|| String::from(crate::config::DEFAULT_PUSHSHIFT_FRONTEND)), ) } else { - rewrite_urls(&val(post, "selftext_html")) + let selftext = val(post, "selftext"); + if selftext.contains("```") { + let mut html_output = String::new(); + let parser = pulldown_cmark::Parser::new(&selftext); + pulldown_cmark::html::push_html(&mut html_output, parser); + rewrite_urls(&html_output) + } else { + rewrite_urls(&val(post, "selftext_html")) + } }; // Build a post using data parsed from Reddit post API