From 8abde49ba2dc156a23b192e7f87f6f7451efd1b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Sun, 21 May 2023 22:22:03 +0200 Subject: [PATCH] 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. --- src/plugins/irc/irc-input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/irc/irc-input.c b/src/plugins/irc/irc-input.c index 225499fef..68e5ae4c8 100644 --- a/src/plugins/irc/irc-input.c +++ b/src/plugins/irc/irc-input.c @@ -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);