Update utils.rs to use ihsoyct

This commit is contained in:
gongchandang49 2025-03-23 21:12:31 +01:00 committed by GitHub
parent 7c2c609f9d
commit 7ca3fc7fa6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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!(
"<div class=\"md\"><p>[removed] — <a href=\"https://{}{permalink}\">view removed post</a></p></div>",
"<div class=\"md\"><p>[removed] — <a href=\"https://{}?comments={post_id}\">view removed post</a></p></div>",
get_setting("REDLIB_PUSHSHIFT_FRONTEND").unwrap_or_else(|| String::from(crate::config::DEFAULT_PUSHSHIFT_FRONTEND)),
)
} else {