summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQais Patankar <qaisjp@gmail.com>2020-12-31 15:51:49 +0000
committerGitHub <noreply@github.com>2020-12-31 16:51:49 +0100
commitb89102c5fcb96c5c40ca3d2ed673b6deefe92e64 (patch)
tree8f39dfbbf57fa915850b1d8d1e4c16e3857bc79e
parent4f20ebead36876a88391bf033d1de3e4cf0228da (diff)
downloadmatterbridge-msglm-b89102c5fcb96c5c40ca3d2ed673b6deefe92e64.tar.gz
matterbridge-msglm-b89102c5fcb96c5c40ca3d2ed673b6deefe92e64.tar.bz2
matterbridge-msglm-b89102c5fcb96c5c40ca3d2ed673b6deefe92e64.zip
Fix 'webook' typo in discord/webhook.go (#1344)
-rw-r--r--bridge/discord/webhook.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/bridge/discord/webhook.go b/bridge/discord/webhook.go
index 16938bc3..7dacc7cd 100644
--- a/bridge/discord/webhook.go
+++ b/bridge/discord/webhook.go
@@ -136,7 +136,7 @@ func (b *Bdiscord) handleEventWebhook(msg *config.Message, channelID string) (st
b.Log.Debugf("Processing webhook sending for message %#v", msg)
discordMsg, err := b.webhookSend(msg, channelID)
if err != nil {
- b.Log.Errorf("Could not broadcast via webook for message %#v: %s", msg, err)
+ b.Log.Errorf("Could not broadcast via webhook for message %#v: %s", msg, err)
return "", err
}
if discordMsg == nil {