LINXD-2222-v2 #6

Closed
sergiu wants to merge 8 commits from LINXD-2222-v2 into master
Showing only changes of commit 5d9a7da62d - Show all commits

4
app.js
View File

@ -60,9 +60,9 @@ httpsServer.listen(process.env.PORT, () => {
const io = new Server(httpsServer, { const io = new Server(httpsServer, {
allowEIO3: true, allowEIO3: true,
allowRequest: (req) => { allowRequest: (req, next) => {
console.log('req', req); console.log('req', req);
return true; next()
} }
}); });