refs #6264 perf: remove async keyword

This commit is contained in:
Javier Segarra 2023-12-12 19:42:46 +01:00
parent a5fb07bf12
commit 0ae75d973f
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
module.exports = function(options) { module.exports = function(options) {
return async function(req, res, next) { return function(req, res, next) {
if (!req.accessToken) if (!req.accessToken)
return next(); return next();