This commit is contained in:
silverwind 2024-04-25 23:28:24 +02:00
parent 7e40149415
commit 0dbb24635a
No known key found for this signature in database
GPG Key ID: 2E62B41C93869443
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ func (b *Base) JSON(status int, content any) {
// JSON render content as JSON
func (b *Base) HTMLString(status int, html string) {
b.Resp.Header().Set("Content-Type", "text/html;charset=utf-8")
b.Resp.WriteHeader(status);
b.Resp.WriteHeader(status)
b.Resp.Write([]byte(html))
}