lib/client: throw error in send if disconnected
This commit is contained in:
@@ -341,6 +341,9 @@ export default class Client extends EventTarget {
|
||||
}
|
||||
|
||||
send(msg) {
|
||||
if (!this.ws) {
|
||||
throw new Error("Failed to send IRC message " + msg.command + ": socket is closed");
|
||||
}
|
||||
this.ws.send(irc.formatMessage(msg));
|
||||
console.log("Sent:", msg);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user