fix(packages/api): null errors being thrown

This commit is contained in:
PalmDevs
2024-07-31 19:27:36 +07:00
parent e29e9c3dd1
commit 711f57f4a1

View File

@@ -123,7 +123,7 @@ export class ClientWebSocketManager {
this.currentSequence++
this.#socket.send(serializePacket(packet), err => {
throw err
if (err) throw err
})
}