Browse Source

Use Writer in Context.Status (#1606)

willnewrelic 6 năm trước cách đây
mục cha
commit
0ce4661029
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      context.go

+ 1 - 1
context.go

@@ -744,7 +744,7 @@ func bodyAllowedForStatus(status int) bool {
 
 // Status sets the HTTP response code.
 func (c *Context) Status(code int) {
-	c.writermem.WriteHeader(code)
+	c.Writer.WriteHeader(code)
 }
 
 // Header is a intelligent shortcut for c.Writer.Header().Set(key, value).