From 5d9a7da62d0b781b5f0d437be006b64432d02f81 Mon Sep 17 00:00:00 2001 From: Sergiu Toma Date: Mon, 19 Sep 2022 23:46:24 +0300 Subject: [PATCH] LINXD-2222: Update --- app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app.js b/app.js index bcea843..9451d10 100644 --- a/app.js +++ b/app.js @@ -60,9 +60,9 @@ httpsServer.listen(process.env.PORT, () => { const io = new Server(httpsServer, { allowEIO3: true, - allowRequest: (req) => { + allowRequest: (req, next) => { console.log('req', req); - return true; + next() } });