src: matrix: Whitespace

This commit is contained in:
2026-09-14 16:04:42 +00:00
parent 6169182aff
commit 856ac37e45
+2
View File
@@ -87,10 +87,12 @@ async fn send_to_room(
Ok(_) => {
info!("Posting to room {}", room.room_id());
room.send(RoomMessageEventContent::text_html(msg.clone(), msg)).await?;
return Ok(());
},
Err(e) => {
error!("Failed to join room {e:?}");
return Err(e.into());
}
};