1
0
Fork 1
mirror of https://example.com synced 2024-11-24 06:16:39 +09:00
This commit is contained in:
syuilo 2022-02-03 22:01:14 +09:00
parent 556abfabb9
commit 6efff48025

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