summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWim <wim@42.be>2018-03-17 18:02:00 +0100
committerWim <wim@42.be>2018-03-17 18:02:00 +0100
commit062be8d7c90ecec293342cf192bed28a6c654906 (patch)
treee490b20471588c32613d1358af9fbbee72b25220
parentdb25ee59c5c9a46feed526133bea6b296256a960 (diff)
downloadmatterbridge-msglm-062be8d7c90ecec293342cf192bed28a6c654906.tar.gz
matterbridge-msglm-062be8d7c90ecec293342cf192bed28a6c654906.tar.bz2
matterbridge-msglm-062be8d7c90ecec293342cf192bed28a6c654906.zip
Revert #378
-rw-r--r--bridge/telegram/telegram.go1
-rw-r--r--matterbridge.toml.sample5
2 files changed, 5 insertions, 1 deletions
diff --git a/bridge/telegram/telegram.go b/bridge/telegram/telegram.go
index 967a316b..bb3326b6 100644
--- a/bridge/telegram/telegram.go
+++ b/bridge/telegram/telegram.go
@@ -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
}
diff --git a/matterbridge.toml.sample b/matterbridge.toml.sample
index 0e74f7e8..9646f053 100644
--- a/matterbridge.toml.sample
+++ b/matterbridge.toml.sample
@@ -832,6 +832,11 @@ 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 &lt;{NICK}&gt;
+#
#OPTIONAL (default empty)
RemoteNickFormat="[{PROTOCOL}] <{NICK}> "