瀏覽代碼

Fixes context.String()

Manu Mtz-Almeida 11 年之前
父節點
當前提交
f387bdda9e
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      gin.go

+ 1 - 1
gin.go

@@ -472,10 +472,10 @@ func (c *Context) HTML(code int, name string, data interface{}) {
 
 // Writes the given string into the response body and sets the Content-Type to "text/plain".
 func (c *Context) String(code int, msg string) {
+	c.Writer.Header().Set("Content-Type", MIMEPlain)
 	if code >= 0 {
 		c.Writer.WriteHeader(code)
 	}
-	c.Writer.Header().Set("Content-Type", MIMEPlain)
 	c.Writer.Write([]byte(msg))
 }