commit 470235c4327c77f5543e780e7257369129dd4b28
Author: Wim <wim@42.be>
Date: Sat Mar 17 18:02:00 2018 +0000
diff --git a/bridge/telegram/telegram.go b/bridge/telegram/telegram.go
index 967a316..bb3326b 100644
--- a/bridge/telegram/telegram.go
+++ b/bridge/telegram/telegram.go
@@ -3857 +3856 @@ 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
}
diff --git a/matterbridge.toml.sample b/matterbridge.toml.sample
index 0e74f7e..9646f05 100644
--- a/matterbridge.toml.sample
+++ b/matterbridge.toml.sample
@@ -8326 +83211 @@ Label=""
#The string "{BRIDGE}" (case sensitive) will be replaced by the sending bridge
#The string "{LABEL}" (case sensitive) will be replaced by label= field of the sending bridge
#The string "{PROTOCOL}" (case sensitive) will be replaced by the protocol used by the bridge
+#
+#WARNING: if you have set MessageFormat="HTML" be sure that this format matches the guidelines
+#on https://core.telegram.org/bots/api#html-style otherwise the message will not go through to
+#telegram! eg <{NICK}> should be <{NICK}>
+#
#OPTIONAL (default empty)
RemoteNickFormat="[{PROTOCOL}] <{NICK}> "