This commit is contained in:
syuilo 2022-02-03 22:01:14 +09:00
parent 1925dc208d
commit 991cff26bd

View file

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