summaryrefslogtreecommitdiffstats
path: root/bridge/discord/handlers.go
diff options
context:
space:
mode:
authorc0ncord2 <59669788+c0ncord2@users.noreply.github.com>2020-01-09 17:02:53 +0000
committerWim <wim@42.be>2020-01-09 18:02:53 +0100
commit810c15078158e221585b9a3dda819544432628f5 (patch)
treeab7af82fc525140f1555b9b2d4d3b8215aad9a0f /bridge/discord/handlers.go
parent31dd538c0b88c4cd4251e027775504cdc8b98f56 (diff)
downloadmatterbridge-msglm-810c15078158e221585b9a3dda819544432628f5.tar.gz
matterbridge-msglm-810c15078158e221585b9a3dda819544432628f5.tar.bz2
matterbridge-msglm-810c15078158e221585b9a3dda819544432628f5.zip
move stripCustomoji logic to default Tengo script (#973)
* move stripCustomoji logic to default Tengo script Removing the image ID from the message (without any possibility of recovering it later) is a loss of valuable data that prevents users from giving support to custom emoji via Tengo scripts. * bugfix - do send colors to other irc bridges "if we're not sending to an irc bridge we strip the IRC colors" Co-authored-by: c0ncord <59654954+c0ncord@users.noreply.github.com>
Diffstat (limited to 'bridge/discord/handlers.go')
-rw-r--r--bridge/discord/handlers.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/bridge/discord/handlers.go b/bridge/discord/handlers.go
index 4ffbf5ab..c86a9e8d 100644
--- a/bridge/discord/handlers.go
+++ b/bridge/discord/handlers.go
@@ -88,7 +88,6 @@ func (b *Bdiscord) messageCreate(s *discordgo.Session, m *discordgo.MessageCreat
if m.Content != "" {
b.Log.Debugf("== Receiving event %#v", m.Message)
- m.Message.Content = b.stripCustomoji(m.Message.Content)
m.Message.Content = b.replaceChannelMentions(m.Message.Content)
rmsg.Text, err = m.ContentWithMoreMentionsReplaced(b.c)
if err != nil {