4
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-06-26 16:39:24 +00:00
This commit is contained in:
Wim
2018-03-17 18:02:00 +01:00
parent db25ee59c5
commit 062be8d7c9
2 changed files with 5 additions and 1 deletions

View File

@ -385,7 +385,6 @@ func (b *Btelegram) sendMessage(chatid int64, username, text string) (string, er
m.Text = username + text
if b.GetString("MessageFormat") == "HTML" {
b.Log.Debug("Using mode HTML")
username = html.EscapeString(username)
m.Text = username + text
m.ParseMode = tgbotapi.ModeHTML
}