Port it to the raw message sender lol

This commit is contained in:
Yash Karandikar 2022-08-28 16:03:08 -05:00
parent 476bcf392a
commit f503d0103e

View file

@ -395,6 +395,9 @@ async fn msg_task(mut recv: UnboundedReceiverStream<QueuedMessage>) -> anyhow::R
http,
message,
} => {
if content.is_empty() {
continue;
}
channel_id.say(&http, message).await?;
}
}