From 7ca3fc7fa631e11ca5478909e5ce604a9cfb1cbb Mon Sep 17 00:00:00 2001 From: gongchandang49 <170948611+gongchandang49@users.noreply.github.com> Date: Sun, 23 Mar 2025 21:12:31 +0100 Subject: [PATCH] Update utils.rs to use ihsoyct --- src/utils.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/utils.rs b/src/utils.rs index f5046cb..68bee9e 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -804,11 +804,13 @@ pub async fn parse_post(post: &Value) -> Post { let permalink = val(post, "permalink"); + let post_id = val(post, "id"); + let poll = Poll::parse(&post["data"]["poll_data"]); let body = if val(post, "removed_by_category") == "moderator" { format!( - "

[removed] — view removed post

", + "

[removed] — view removed post

", get_setting("REDLIB_PUSHSHIFT_FRONTEND").unwrap_or_else(|| String::from(crate::config::DEFAULT_PUSHSHIFT_FRONTEND)), ) } else {