From 58eb6d60935bba858bedddf0c71dab5100a73878 Mon Sep 17 00:00:00 2001 From: Darren Date: Mon, 5 Sep 2011 12:50:57 +0100 Subject: [PATCH] Removed non-printable chars from the source which effect CTCP ACTION --- node/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/app.js b/node/app.js index 670e110..6434022 100644 --- a/node/app.js +++ b/node/app.js @@ -692,7 +692,7 @@ this.websocketMessage = function (websocket, msg, callback) { break; case 'action': if ((args.target) && (args.msg)) { - websocket.sendServerLine('PRIVMSG ' + args.target + ' :' + String.fromCharCode(1) + 'ACTION ' + args.msg + String.fromCharCode(1)); + websocket.sendServerLine('PRIVMSG ' + args.target + ' :\001ACTION ' + args.msg + '\001'); } break; case 'raw': -- 2.25.1