LINXD-2222: Update

This commit is contained in:
Sergiu Toma 2022-09-19 23:46:24 +03:00
parent b7ef9bcdd4
commit 5d9a7da62d

4
app.js
View File

@ -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()
}
});