src: main: Remove useless return statement

This commit is contained in:
2026-09-14 16:01:40 +00:00
parent 57b0760c99
commit b343536032
-2
View File
@@ -68,8 +68,6 @@ async fn main() -> anyhow::Result<()> {
debug!("Sending msg {}", msg); debug!("Sending msg {}", msg);
//XXX: Panic if the matrix module can't get the message //XXX: Panic if the matrix module can't get the message
bcast_tx.send((msg.into(), config.rooms.clone())).unwrap(); bcast_tx.send((msg.into(), config.rooms.clone())).unwrap();
()
}).await.unwrap(); //XXX: Panic if the mqtt broker fails }).await.unwrap(); //XXX: Panic if the mqtt broker fails
}) })
}; };