fix: use text instead of notice for command replies

This commit is contained in:
Xiretza 2022-11-13 10:56:32 +01:00
parent d64429a009
commit 1b48d830e6

View file

@ -220,7 +220,7 @@ impl Bot {
let reply = |msg: &str| {
room.send(
RoomMessageEventContent::notice_plain(msg).make_reply_to(ev),
RoomMessageEventContent::text_plain(msg).make_reply_to(ev),
None,
)
};