No need to send error message if request is complete

This commit is contained in:
Tobie Morgan Hitchcock 2017-11-16 20:38:45 +00:00
parent 8883645aa7
commit fd3df8dbfc

View file

@ -25,6 +25,10 @@ func errors(val error, c *fibre.Context) {
return
}
if c.IsComplete() {
return
}
var code int
var info string