diff options
-rw-r--r-- | weechat/tomsg.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/weechat/tomsg.c b/weechat/tomsg.c index b56b08c..b3ae583 100644 --- a/weechat/tomsg.c +++ b/weechat/tomsg.c @@ -79,13 +79,13 @@ static void display_message( bool is_self_msg ) { char tags[128]; - snprintf(tags, sizeof tags, "tomsgid_%" PRIi64 ",nick_%s,log1%s%s", + snprintf(tags, sizeof tags, "tomsgid_%" PRIi64 ",nick_%s%s%s", msgid, username, is_history ? ",notify_none,no_log" - : is_self_msg ? ",notify_none" - : room->nmembers == 2 ? ",notify_private" - : ",notify_message", + : is_self_msg ? ",notify_none,log1" + : room->nmembers == 2 ? ",notify_private,log1" + : ",notify_message,log1", is_reply ? ",tomsg_reply" : ""); weechat_printf_date_tags( |