Skip to content

Commit f907c17

Browse files
committed
fix function expression
1 parent 05e49f7 commit f907c17

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)