diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2021-01-29 21:42:47 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-29 08:42:47 -0500 |
commit | 87b098f3b6830869f73ccf810fcbeddcdefcc6e0 (patch) | |
tree | c04ebf5fa44d0163ccbca0b30ee829c8e7b7af94 | |
parent | f19da14c34f3a86a77b45de77f48109fa5edcf78 (diff) | |
download | gitea-87b098f3b6830869f73ccf810fcbeddcdefcc6e0.tar.gz gitea-87b098f3b6830869f73ccf810fcbeddcdefcc6e0.zip |
Fix json charset bug (#14514)
-rw-r--r-- | modules/context/context.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/context/context.go b/modules/context/context.go index 210365f0b1..4fd0861df0 100644 --- a/modules/context/context.go +++ b/modules/context/context.go @@ -330,7 +330,7 @@ func (ctx *Context) ServeContent(name string, r io.ReadSeeker, params ...interfa // PlainText render content as plain text func (ctx *Context) PlainText(status int, bs []byte) { ctx.Resp.WriteHeader(status) - ctx.Resp.Header().Set("Content-Type", "text/plain;charset=utf8") + ctx.Resp.Header().Set("Content-Type", "text/plain;charset=utf-8") if _, err := ctx.Resp.Write(bs); err != nil { ctx.ServerError("Render JSON failed", err) } @@ -365,7 +365,7 @@ func (ctx *Context) Error(status int, contents ...string) { // JSON render content as JSON func (ctx *Context) JSON(status int, content interface{}) { - ctx.Resp.Header().Set("Content-Type", "application/json;charset=utf8") + ctx.Resp.Header().Set("Content-Type", "application/json;charset=utf-8") ctx.Resp.WriteHeader(status) if err := json.NewEncoder(ctx.Resp).Encode(content); err != nil { ctx.ServerError("Render JSON failed", err) |