1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-30 06:46:38 +02:00

irc: add nick, host and log tags in message displayed in private buffer when the nick comes back on the server (closes #1221)

This commit is contained in:
Sébastien Helleu
2018-07-11 07:36:11 +02:00
parent 7bd8fb4686
commit 5b3f2ad466
3 changed files with 9 additions and 2 deletions
+2 -1
View File
@@ -97,7 +97,8 @@ irc_protocol_log_level_for_command (const char *command)
if ((strcmp (command, "join") == 0)
|| (strcmp (command, "part") == 0)
|| (strcmp (command, "quit") == 0))
|| (strcmp (command, "quit") == 0)
|| (strcmp (command, "nick_back") == 0))
return 4;
return 3;