fix: remove unneeded assignment, as req and locals will not likely ever be completely reassigned

isekai-main
Julian Lam 2 years ago
parent 28613e70e8
commit a69bc2cf7f

@ -35,7 +35,7 @@ middleware.buildHeader = helpers.try(async (req, res, next) => {
await require('./index').applyCSRFasync(req, res);
}
({ req, locals: res.locals } = await plugins.hooks.fire('filter:middleware.buildHeader', { req: req, locals: res.locals }));
await plugins.hooks.fire('filter:middleware.buildHeader', { req: req, locals: res.locals });
const [config, canLoginIfBanned] = await Promise.all([
controllers.api.loadConfig(req),
user.bans.canLoginIfBanned(req.uid),

Loading…
Cancel
Save