Remove % formatting in sent messages. Leave that to plugins.
authorDarren <darren@darrenwhitlen.com>
Thu, 23 Oct 2014 14:01:48 +0000 (15:01 +0100)
committerDarren <darren@darrenwhitlen.com>
Thu, 23 Oct 2014 14:01:48 +0000 (15:01 +0100)
client/src/misc/clientuicommands.js

index 4b0e75b06d63ec94ddbd568977686da2bbe11bd4..4e76301d4c494ee328704036692c6467145c6adf 100644 (file)
             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);