From b343536032c331f0a6bec67281c40c0d94aa1e53 Mon Sep 17 00:00:00 2001 From: mirsal Date: Mon, 14 Sep 2026 16:01:40 +0000 Subject: [PATCH] src: main: Remove useless return statement --- src/main.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 906217b..3e6a648 100644 --- a/src/main.rs +++ b/src/main.rs @@ -68,8 +68,6 @@ async fn main() -> anyhow::Result<()> { debug!("Sending msg {}", msg); //XXX: Panic if the matrix module can't get the message bcast_tx.send((msg.into(), config.rooms.clone())).unwrap(); - - () }).await.unwrap(); //XXX: Panic if the mqtt broker fails }) };