Актуализация пакетов

This commit is contained in:
Book Pauk
2021-10-26 00:18:18 +07:00
parent fdf04fed0e
commit 83bf1f1d3a
3 changed files with 5 additions and 5 deletions

6
package-lock.json generated
View File

@@ -15598,9 +15598,9 @@
}
},
"ws": {
"version": "7.5.5",
"resolved": "https://registry.npmjs.org/ws/-/ws-7.5.5.tgz",
"integrity": "sha512-BAkMFcAzl8as1G/hArkxOxq3G7pjUqQ3gzYbLL0/5zNkph70e+lCoxBGnm6AW1+/aiNeV4fnKqZ8m4GZewmH2w=="
"version": "8.2.3",
"resolved": "https://registry.npmjs.org/ws/-/ws-8.2.3.tgz",
"integrity": "sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA=="
},
"xml2js": {
"version": "0.4.23",

View File

@@ -87,7 +87,7 @@
"vuex": "^3.6.2",
"vuex-persistedstate": "^2.7.1",
"webdav": "^2.10.2",
"ws": "^7.5.5",
"ws": "^8.2.3",
"zip-stream": "^2.1.3"
}
}

View File

@@ -23,7 +23,7 @@ class WebSocketController {
wss.on('connection', (ws) => {
ws.on('message', (message) => {
this.onMessage(ws, message);
this.onMessage(ws, message.toString());
});
});