From f88c5f6c08fa549c8d98691db377f054f9b76833 Mon Sep 17 00:00:00 2001
From: David Hill <dhill@mindcry.org>
Date: Wed, 9 Jan 2019 22:15:26 +0000
Subject: [PATCH] Fix displaying usernames for plain text clients. (matrix)
 (#685)

---
 bridge/matrix/matrix.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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
 	}