diff --git a/src/irc_discord.rs b/src/irc_discord.rs index 7504848..b272cc6 100644 --- a/src/irc_discord.rs +++ b/src/irc_discord.rs @@ -395,6 +395,9 @@ async fn msg_task(mut recv: UnboundedReceiverStream) -> anyhow::R http, message, } => { + if content.is_empty() { + continue; + } channel_id.say(&http, message).await?; } }