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

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