diff options
Diffstat (limited to 'bridge/matrix')
-rw-r--r-- | bridge/matrix/matrix.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bridge/matrix/matrix.go b/bridge/matrix/matrix.go index 12f50e8d..45f26c71 100644 --- a/bridge/matrix/matrix.go +++ b/bridge/matrix/matrix.go @@ -114,7 +114,7 @@ func (b *Bmatrix) Send(msg config.Message) (string, error) { // matrix has no editing support // Post normal message with HTML support (eg riot.im) - resp, err := b.mc.SendHTML(channel, msg.Text, html.EscapeString(msg.Username)+helper.ParseMarkdown(msg.Text)) + resp, err := b.mc.SendHTML(channel, msg.Username+msg.Text, html.EscapeString(msg.Username)+helper.ParseMarkdown(msg.Text)) if err != nil { return "", err } |