Skip to content

Commit 9894607

Browse files
authored
Merge pull request oauthinaction#22 from caodangtinh/master
fix function expression
2 parents 05e49f7 + f907c17 commit 9894607

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/ch-12-ex-2/authorizationServer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ app.post("/token", function(req, res){
239239
}
240240
});
241241

242-
var checkClientMetadata(req, res) {
242+
var checkClientMetadata = function(req, res) {
243243
var reg = {};
244244

245245
if (!req.body.token_endpoint_auth_method) {

0 commit comments

Comments
 (0)