Merge pull request #958 from SISheogorath/fix/uws

Replace `uws` with `ws` package
This commit is contained in:
Christoph (Sheogorath) Kern 2018-10-03 16:54:35 +02:00 committed by GitHub
commit ae8fa41f92
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

2
app.js
View file

@ -58,7 +58,7 @@ app.use(morgan('combined', {
// socket io
var io = require('socket.io')(server)
io.engine.ws = new (require('uws').Server)({
io.engine.ws = new (require('ws').Server)({
noServer: true,
perMessageDeflate: false
})