diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2023-05-21 22:22:03 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2023-05-23 21:49:53 +0200 |
commit | 8abde49ba2dc156a23b192e7f87f6f7451efd1b9 (patch) | |
tree | e7837073b4c310dccb35947aa17e01b641dbd551 /src/plugins/irc/irc-input.c | |
parent | 20bfe4c1bab4cfbc3e67d6c513924fbd4c964b5c (diff) | |
download | weechat-8abde49ba2dc156a23b192e7f87f6f7451efd1b9.zip |
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.
Diffstat (limited to 'src/plugins/irc/irc-input.c')
-rw-r--r-- | src/plugins/irc/irc-input.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |