This commit is contained in:
Kieran 2022-12-29 16:07:12 +00:00
parent 81ac966a03
commit 5d5e6d986d
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ export default class Connection {
}
_SendJson(obj) {
if (this.Socket.readyState !== this.Socket.OPEN) {
if (this.Socket?.readyState !== WebSocket.OPEN) {
this.Pending.push(obj);
return;
}