diff options
author | Qais Patankar <qaisjp@gmail.com> | 2020-03-22 13:16:31 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-22 14:16:31 +0100 |
commit | af0acf0daece8c4857513f3fea84a332709e8c55 (patch) | |
tree | 7aab8b1a3dbe7103fc1dc46996b5f25939a6b5a5 /bridge/discord/helpers.go | |
parent | 76e5fe5a87d7e60919075f96eee599f3c6255a9f (diff) | |
download | matterbridge-msglm-af0acf0daece8c4857513f3fea84a332709e8c55.tar.gz matterbridge-msglm-af0acf0daece8c4857513f3fea84a332709e8c55.tar.bz2 matterbridge-msglm-af0acf0daece8c4857513f3fea84a332709e8c55.zip |
Strip extra info from emotes (discord) (#1052)
Diffstat (limited to 'bridge/discord/helpers.go')
-rw-r--r-- | bridge/discord/helpers.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bridge/discord/helpers.go b/bridge/discord/helpers.go index 8bc4f336..9ef234c5 100644 --- a/bridge/discord/helpers.go +++ b/bridge/discord/helpers.go @@ -137,6 +137,7 @@ var ( // See https://discordapp.com/developers/docs/reference#message-formatting. channelMentionRE = regexp.MustCompile("<#[0-9]+>") userMentionRE = regexp.MustCompile("@[^@\n]{1,32}") + emoteRE = regexp.MustCompile(`<a?(:\w+:)\d+>`) ) func (b *Bdiscord) replaceChannelMentions(text string) string { @@ -182,6 +183,10 @@ func (b *Bdiscord) replaceUserMentions(text string) string { return userMentionRE.ReplaceAllStringFunc(text, replaceUserMentionFunc) } +func replaceEmotes(text string) string { + return emoteRE.ReplaceAllString(text, "$1") +} + func (b *Bdiscord) replaceAction(text string) (string, bool) { if strings.HasPrefix(text, "_") && strings.HasSuffix(text, "_") { return text[1 : len(text)-1], true |