summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--api/post.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/api/post.go b/api/post.go
index dee26516f..ef70e1336 100644
--- a/api/post.go
+++ b/api/post.go
@@ -229,6 +229,10 @@ func handlePostEventsAndForget(c *Context, post *model.Post, triggerWebhooks boo
func handleWebhookEventsAndForget(c *Context, post *model.Post, team *model.Team, channel *model.Channel, user *model.User) {
go func() {
+ if !utils.Cfg.ServiceSettings.EnableOutgoingWebhooks {
+ return
+ }
+
if channel.Type != model.CHANNEL_OPEN {
return
}