mirror of
https://github.com/usememos/memos.git
synced 2025-02-14 10:20:49 +01:00
chore: allow all 20x response status code in webhook (#2947)
This commit is contained in:
parent
606e574e19
commit
4aa4417d91
@ -95,7 +95,7 @@ func Post(payload WebhookPayload) error {
|
||||
}
|
||||
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)
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user