mirror of https://github.com/gin-gonic/gin.git
Merge pull request #76 from mopemope/fix-plainrender
Fix Corrupted plainRender
This commit is contained in:
commit
3716419fca
|
@ -64,6 +64,11 @@ func (_ plainRender) Render(w http.ResponseWriter, code int, data ...interface{}
|
||||||
writeHeader(w, code, "text/plain")
|
writeHeader(w, code, "text/plain")
|
||||||
format := data[0].(string)
|
format := data[0].(string)
|
||||||
args := data[1].([]interface{})
|
args := data[1].([]interface{})
|
||||||
_, err := w.Write([]byte(fmt.Sprintf(format, args)))
|
var err error
|
||||||
|
if len(args) > 0 {
|
||||||
|
_, err = w.Write([]byte(fmt.Sprintf(format, args...)))
|
||||||
|
} else {
|
||||||
|
_, err = w.Write([]byte(format))
|
||||||
|
}
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue