summaryrefslogtreecommitdiff
path: root/src/plugins
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2021-10-16 20:42:57 +0200
committerSébastien Helleu <flashcode@flashtux.org>2021-10-17 21:28:31 +0200
commit2f90fc0299a08bb4bdaaf8c33bde1678f405a25b (patch)
treef2823f4b98791836b503464827a2ca93d803a6a0 /src/plugins
parentd2bd952210adbfe2618637582f4df8a8ca710d87 (diff)
downloadweechat-2f90fc0299a08bb4bdaaf8c33bde1678f405a25b.zip
irc: don't keep trailing spaces in received message TAGMSG
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/irc/irc-protocol.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/irc/irc-protocol.c b/src/plugins/irc/irc-protocol.c
index 8b8b2ab85..d18e685e5 100644
--- a/src/plugins/irc/irc-protocol.c
+++ b/src/plugins/irc/irc-protocol.c
@@ -7006,7 +7006,7 @@ irc_protocol_recv_command (struct t_irc_server *server,
IRCB(privmsg, 1, 1, privmsg), /* message received */
IRCB(quit, 1, 1, quit), /* close all connections and quit */
IRCB(setname, 0, 1, setname), /* set realname */
- IRCB(tagmsg, 0, 1, tagmsg), /* tag message */
+ IRCB(tagmsg, 0, 0, tagmsg), /* tag message */
IRCB(topic, 0, 1, topic), /* get/set channel topic */
IRCB(wallops, 1, 1, wallops), /* wallops */
IRCB(warn, 1, 0, warn), /* warning received from server */