From 2871632382395cb20cbe0047c542d3ac31ff3f03 Mon Sep 17 00:00:00 2001 From: Tom Date: Mon, 18 May 2026 10:56:01 -0700 Subject: [PATCH] fix: voice ingress crashing due to new Result in AMQP::new_auto() (#765) Signed-off-by: IAmTomahawkx --- crates/daemons/voice-ingress/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/daemons/voice-ingress/src/main.rs b/crates/daemons/voice-ingress/src/main.rs index 45191c2c..727e1a25 100644 --- a/crates/daemons/voice-ingress/src/main.rs +++ b/crates/daemons/voice-ingress/src/main.rs @@ -13,7 +13,7 @@ mod guard; async fn main() -> Result<(), rocket::Error> { revolt_config::configure!(voice_ingress); - let amqp = AMQP::new_auto().await; + let amqp = AMQP::new_auto().await.unwrap(); let database = DatabaseInfo::Auto.connect().await.unwrap(); let voice_client = VoiceClient::from_revolt_config().await;