This commit is contained in:
emerson 2021-12-05 18:47:52 -05:00
parent 4ffe157380
commit 3af205e9a3
No known key found for this signature in database
GPG key ID: 270669502DA603E3

View file

@ -54,6 +54,10 @@ export class Client {
this.doCAP(message);
break;
}
case 'PING': {
this.sendMessage(this.server.name, "PONG", message.params, message.tags);
break;
}
}
}