refactor
This commit is contained in:
parent
556abfabb9
commit
6efff48025
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ module.exports = (server: http.Server) => {
|
|||
});
|
||||
|
||||
connection.on('message', async (data) => {
|
||||
if (data.utf8Data === 'ping') {
|
||||
if (data.type === 'utf8' && data.utf8Data === 'ping') {
|
||||
connection.send('pong');
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue