Small bug fix for special handlers.

This commit is contained in:
Travis Reeder
2016-08-10 00:09:32 -07:00
parent 8558d13f07
commit a0b025fb88
2 changed files with 3 additions and 1 deletions

View File

@@ -26,7 +26,7 @@ func handleSpecial(c *gin.Context) {
err := Api.UseSpecialHandlers(c)
if err != nil {
log.WithError(err).Errorln("Error using special handler!")
// todo: what do we do here?
// todo: what do we do here? Should probably return a 500 or something
}
}

View File

@@ -73,6 +73,8 @@ func (s *Server) UseSpecialHandlers(ginC *gin.Context) error {
return err
}
}
// now call the normal runner call
handleRunner(ginC)
return nil
}