Browse Source

webhook: set Content-Type for application/x-www-form-urlencoded (#8600)

This header is missing since switching http client from GiteaServer (`code.gitea.io/gitea/modules/httplib`) to Go-http-client/1.1 (`net.http`). The header [was added by default](https://github.com/go-gitea/gitea/blob/release/v1.8/modules/httplib/httplib.go#L301) by the former, but this is no longer true with `net.http`, so it needs to be done explicitly.

Closes: #7700
tags/v1.10.0-rc2
Viktor Szakats 4 years ago
parent
commit
8e9265c402
1 changed files with 2 additions and 0 deletions
  1. 2
    0
      models/webhook.go

+ 2
- 0
models/webhook.go View File



return err return err
} }

req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
} }
case http.MethodGet: case http.MethodGet:
u, err := url.Parse(t.URL) u, err := url.Parse(t.URL)

Loading…
Cancel
Save