From d62f49d1fc3820d791f3d7cebf4fa3b6b2857707 Mon Sep 17 00:00:00 2001 From: Wim Date: Sat, 24 Feb 2018 22:38:27 +0100 Subject: Skip events for webhook --- bridge/discord/discord.go | 4 ++++ bridge/mattermost/mattermost.go | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/bridge/discord/discord.go b/bridge/discord/discord.go index f4fc8e27..eb74dd85 100644 --- a/bridge/discord/discord.go +++ b/bridge/discord/discord.go @@ -128,6 +128,10 @@ func (b *bdiscord) Send(msg config.Message) (string, error) { // Use webhook to send the message if wID != "" { + // skip events + if msg.Event != "" { + return "", nil + } flog.Debugf("Broadcasting using Webhook") err := b.c.WebhookExecute( wID, diff --git a/bridge/mattermost/mattermost.go b/bridge/mattermost/mattermost.go index 887eed38..b94f42ba 100644 --- a/bridge/mattermost/mattermost.go +++ b/bridge/mattermost/mattermost.go @@ -361,6 +361,11 @@ func (b *Bmattermost) handleUploadFile(msg *config.Message) (string, error) { // sendWebhook uses the configured WebhookURL to send the message func (b *Bmattermost) sendWebhook(msg config.Message) (string, error) { + // skip events + if msg.Event != "" { + return "", nil + } + if b.Config.PrefixMessagesWithNick { msg.Text = msg.Username + msg.Text } -- cgit v1.2.3