1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-29 14:26:39 +02:00

irc: fix display of actions sent with /me (issue #139)

This commit is contained in:
Sébastien Helleu
2023-05-25 22:34:03 +02:00
parent d9789e522f
commit e50be16730
4 changed files with 53 additions and 26 deletions
+1 -1
View File
@@ -1913,7 +1913,7 @@ IRC_COMMAND_CALLBACK(ctcp)
/* display message only if capability "echo-message" is NOT enabled */
if (!weechat_hashtable_has_key (ptr_server->cap_list, "echo-message"))
{
irc_ctcp_display_send (ptr_server, ctcp_target, ctcp_type,
irc_ctcp_display_send (ptr_server, NULL, ctcp_target, ctcp_type,
ctcp_args);
}
irc_ctcp_send (ptr_server, ctcp_target, ctcp_type, ctcp_args);