mirror of
https://github.com/usememos/memos.git
synced 2025-10-11 23:06:03 +08:00
chore: allow all 20x response status code in webhook (#2947)
This commit is contained in:
parent
606e574e19
commit
4aa4417d91
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ func Post(payload WebhookPayload) error {
|
||||||
}
|
}
|
||||||
defer resp.Body.Close()
|
defer resp.Body.Close()
|
||||||
|
|
||||||
if resp.StatusCode != http.StatusOK {
|
if resp.StatusCode < 200 || resp.StatusCode > 299 {
|
||||||
return errors.Errorf("failed to post webhook %s, status code: %d, response body: %s", payload.URL, resp.StatusCode, b)
|
return errors.Errorf("failed to post webhook %s, status code: %d, response body: %s", payload.URL, resp.StatusCode, b)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue