From 332eff26a0a358eef52c307b02b7e1ac080dd15f Mon Sep 17 00:00:00 2001 From: Nathan Perry Date: Sat, 11 May 2024 17:43:58 -0400 Subject: db: fixup build, async-await --- src/commands/meme/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/commands/meme/mod.rs') 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); -- cgit v1.3.1