projects
/
KiwiIRC.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
33a4435
)
Remove % formatting in sent messages. Leave that to plugins.
author
Darren
<darren@darrenwhitlen.com>
Thu, 23 Oct 2014 14:01:48 +0000
(15:01 +0100)
committer
Darren
<darren@darrenwhitlen.com>
Thu, 23 Oct 2014 14:01:48 +0000
(15:01 +0100)
client/src/misc/clientuicommands.js
patch
|
blob
|
blame
|
history
diff --git
a/client/src/misc/clientuicommands.js
b/client/src/misc/clientuicommands.js
index 4b0e75b06d63ec94ddbd568977686da2bbe11bd4..4e76301d4c494ee328704036692c6467145c6adf 100644
(file)
--- 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);