1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-09 19:23:13 +02:00

irc: add missing host tag in self messages with cap echo-message enabled (issue #139)

This commit is contained in:
Sébastien Helleu
2023-05-27 15:56:07 +02:00
parent 649b9d0ca6
commit 1651c48856
5 changed files with 19 additions and 14 deletions
+1 -1
View File
@@ -1941,7 +1941,7 @@ IRC_COMMAND_CALLBACK(ctcp)
&& irc_channel_is_channel (ptr_server, ctcp_target + 1)) ?
ctcp_target + 1 : ctcp_target);
irc_ctcp_display_send (ptr_server, ptr_channel_target,
ctcp_target, ctcp_type, ctcp_args);
ctcp_target, NULL, ctcp_type, ctcp_args);
}
irc_ctcp_send (ptr_server, ctcp_target, ctcp_type, ctcp_args);
}