Workaround for broken IRC bridge
This commit is contained in:
parent
1b48d830e6
commit
c40de5fbd1
1 changed files with 4 additions and 0 deletions
|
@ -219,6 +219,10 @@ impl Bot {
|
|||
};
|
||||
|
||||
let reply = |msg: &str| {
|
||||
// workaround for broken IRC bridge
|
||||
// https://github.com/matrix-org/matrix-appservice-irc/issues/683#issuecomment-1312688727
|
||||
let msg = format!("\n{msg}");
|
||||
|
||||
room.send(
|
||||
RoomMessageEventContent::text_plain(msg).make_reply_to(ev),
|
||||
None,
|
||||
|
|
Loading…
Reference in a new issue