Fix broken webhooks (#29690)

Fix #29689

(cherry picked from commit 6e8762f962c5eaaee1c92e910c95c8b85b7c1e11)
This commit is contained in:
Lunny Xiao 2024-03-10 09:32:48 +08:00 committed by Earl Warren
parent 27beed74b5
commit 1b8aa3ab6f
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00

View file

@ -94,7 +94,12 @@ func newJSONRequest[T any](pc payloadConvertor[T], w *webhook_model.Webhook, t *
return nil, nil, err
}
req, err := http.NewRequest(w.HTTPMethod, w.URL, bytes.NewReader(body))
method := w.HTTPMethod
if method == "" {
method = http.MethodPost
}
req, err := http.NewRequest(method, w.URL, bytes.NewReader(body))
if err != nil {
return nil, nil, err
}