From 78f6dfd5ff9e0422c73ad86961e29ceea43ca4f4 Mon Sep 17 00:00:00 2001 From: Darren Date: Thu, 23 Oct 2014 15:01:48 +0100 Subject: [PATCH] Remove % formatting in sent messages. Leave that to plugins. --- client/src/misc/clientuicommands.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/misc/clientuicommands.js b/client/src/misc/clientuicommands.js index 4b0e75b..4e76301 100644 --- a/client/src/misc/clientuicommands.js +++ b/client/src/misc/clientuicommands.js @@ -272,7 +272,7 @@ panel = this.app.connections.active_connection.panels.getByName(destination) || this.app.panels().server; ev.params.shift(); - message = formatToIrcMsg(ev.params.join(' ')); + message = ev.params.join(' '); panel.addMsg(this.app.connections.active_connection.get('nick'), styleText('privmsg', {text: message}), 'privmsg'); this.app.connections.active_connection.gateway.msg(destination, message); -- 2.25.1