From: Darren Date: Thu, 23 Oct 2014 14:01:48 +0000 (+0100) Subject: Remove % formatting in sent messages. Leave that to plugins. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=78f6dfd5ff9e0422c73ad86961e29ceea43ca4f4;p=KiwiIRC.git Remove % formatting in sent messages. Leave that to plugins. --- 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);