diff --git a/src/main.rs b/src/main.rs index a908da7..5df596d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -111,6 +111,7 @@ fn to_code_block(s: &str) -> String { } fn execute_and_respond(channel: &ChannelId, command: &str, code: &str) -> Result<(), serenity::Error> { + channel.broadcast_typing()?; let coliru_result = execute_coliru(command, code); match coliru_result {