1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-26 12:56:37 +02:00

irc: fix order of tags in outgoing messages

The order of tags in message doesn't matter, but this is for the sake of
consistency with the other messages displayed.
This commit is contained in:
Sébastien Helleu
2023-05-21 22:22:03 +02:00
parent 20bfe4c1ba
commit 8abde49ba2
+1 -1
View File
@@ -93,7 +93,7 @@ irc_input_user_message_display (struct t_gui_buffer *buffer, int action,
weechat_config_color (
weechat_config_get ("weechat.color.chat_nick_self")));
snprintf (str_tags, sizeof (str_tags),
"notify_none,self_msg,no_highlight,prefix_nick_%s",
"self_msg,notify_none,no_highlight,prefix_nick_%s",
(str_color) ? str_color : "default");
if (str_color)
free (str_color);