mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 02:00:55 +00:00
incorrect error rendering (wrong status)
This commit is contained in:
parent
0240e182c6
commit
8b504e7d51
@ -177,7 +177,7 @@ func jsonRenderer(value interface{}) Renderer {
|
||||
func errorRenderer(err error) Renderer {
|
||||
return rendererFunc(func(ctx *Context) {
|
||||
ctx.Output.SetStatus(500)
|
||||
ctx.WriteString(err.Error())
|
||||
ctx.Output.Body([]byte(err.Error()))
|
||||
})
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user