diff options
author | Jeff Stein <jeff@jeffvstein.org> | 2020-02-28 06:33:52 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-28 14:33:52 +0000 |
commit | e661cd03218abf3651de688fdb662e2cdc2feef7 (patch) | |
tree | 6aa544a7d348fe4c30bbb045f4eb99a16d1614c7 /templates/repo/settings/webhook/gogs.tmpl | |
parent | ae4eaf02be38de6cb54d93f41cd7683fde0d57e5 (diff) | |
download | gitea-e661cd03218abf3651de688fdb662e2cdc2feef7.tar.gz gitea-e661cd03218abf3651de688fdb662e2cdc2feef7.zip |
Set correct content_type value for Gogs/Gitea webhooks (#9504) (#10456)
The content_type value was defaulting to the string value of the
ContentType, not the integer value as expected by the backend.
Diffstat (limited to 'templates/repo/settings/webhook/gogs.tmpl')
-rw-r--r-- | templates/repo/settings/webhook/gogs.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo/settings/webhook/gogs.tmpl b/templates/repo/settings/webhook/gogs.tmpl index 203a0a7954..7a40146163 100644 --- a/templates/repo/settings/webhook/gogs.tmpl +++ b/templates/repo/settings/webhook/gogs.tmpl @@ -9,7 +9,7 @@ <div class="field"> <label>{{.i18n.Tr "repo.settings.content_type"}}</label> <div class="ui selection dropdown"> - <input type="hidden" id="content_type" name="content_type" value="{{if .Webhook.ContentType}}{{.Webhook.ContentType}}{{else}}application/json{{end}}"> + <input type="hidden" id="content_type" name="content_type" value="{{if .Webhook.ContentType}}{{.Webhook.ContentType}}{{else}}1{{end}}"> <div class="default text"></div> <i class="dropdown icon"></i> <div class="menu"> |