diff options
Diffstat (limited to 'bridge/mattermost/handlers.go')
-rw-r--r-- | bridge/mattermost/handlers.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bridge/mattermost/handlers.go b/bridge/mattermost/handlers.go index cd625c55..0b1c776a 100644 --- a/bridge/mattermost/handlers.go +++ b/bridge/mattermost/handlers.go @@ -66,6 +66,11 @@ func (b *Bmattermost) handleMatter() { } else { b.Log.Debugf("Choosing login/password based receiving") } + // if for some reason we only want to sent stuff to mattermost but not receive, return + if b.GetString("WebhookBindAddress") == "" && b.GetString("WebhookURL") != "" { + b.Log.Debugf("No WebhookBindAddress specified, only WebhookURL. You will not receive messages from mattermost, only sending is possible.") + return + } go b.handleMatterClient(messages) } var ok bool |