summaryrefslogtreecommitdiffstats
path: root/api/webhook.go
diff options
context:
space:
mode:
Diffstat (limited to 'api/webhook.go')
-rw-r--r--api/webhook.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/webhook.go b/api/webhook.go
index 12751943e..a86af98c0 100644
--- a/api/webhook.go
+++ b/api/webhook.go
@@ -374,7 +374,7 @@ func incomingWebhook(c *Context, w http.ResponseWriter, r *http.Request) {
parsedRequest := model.IncomingWebhookRequestFromJson(payload)
- err := app.HandleIncomingWebhook(id, parsedRequest)
+ err := app.HandleIncomingWebhook(id, parsedRequest, c.GetSiteURL())
if err != nil {
c.Err = err
return