aboutsummaryrefslogtreecommitdiff
path: root/src/commands/meme/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/meme/mod.rs')
-rw-r--r--src/commands/meme/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commands/meme/mod.rs b/src/commands/meme/mod.rs
index b5a3c98..cfe02ee 100644
--- a/src/commands/meme/mod.rs
+++ b/src/commands/meme/mod.rs
@@ -78,8 +78,8 @@ async fn send_meme(
debug!("sending meme (tts: {}): {:?}", should_tts, t);
- let image = t.image(conn);
- let audio = t.audio(conn);
+ let image = t.image(conn).await;
+ let audio = t.audio(conn).await;
let cmsg = {
let ret = CreateMessage::default().tts(should_tts);