From 0da741f453f60aa08e6bca2e0f4a83bad29d40cb Mon Sep 17 00:00:00 2001 From: Matthew R Date: Mon, 9 Aug 2021 14:42:37 -0400 Subject: [PATCH] logging --- src/class/Context.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/class/Context.ts b/src/class/Context.ts index 4cc157a..100ea45 100644 --- a/src/class/Context.ts +++ b/src/class/Context.ts @@ -29,7 +29,7 @@ export default class Context { } public send(v: string) { - this.socket.write(`${v.toString()}\r\n`, (err) => { + this.socket.write(`${v.toString()}\n`, (err) => { if (err) { this.client.signale.error(`Error occurred while writing: ${err}`); }