Merge branch 'master' into master

This commit is contained in:
Tyler Davis
2017-10-13 12:05:14 -07:00
committed by GitHub
9 changed files with 117 additions and 26 deletions

4
app.go
View File

@@ -503,7 +503,7 @@ func HandleAction(action interface{}, context *Context) (err error) {
} else if a, ok := action.(func(*Context)); ok { // deprecated function signature
a(context)
return nil
} else {
return errInvalidActionType
}
return errInvalidActionType
}