From 8e40803215346c19c15d9b2512ace1757a793fa4 Mon Sep 17 00:00:00 2001 From: Yash Karandikar Date: Tue, 5 Jul 2022 23:51:02 +0530 Subject: [PATCH] Process replied message --- src/discord_irc.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/discord_irc.rs b/src/discord_irc.rs index 5015f3b..9b9f424 100644 --- a/src/discord_irc.rs +++ b/src/discord_irc.rs @@ -160,6 +160,8 @@ impl EventHandler for Handler { .collect::() ); + content = discord_to_irc_processing(&content, &**members_lock, &ctx, &roles).await; + let to_send = if content.len() > reply_content_limit { format!("{}...", &content[..reply_content_limit - 3]) } else {