1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-01 07:16:37 +02:00

Do not set unread marker on IRC server and channels when reconnecting to IRC server if self nick is away

This commit is contained in:
Sebastien Helleu
2009-01-05 11:19:00 +01:00
parent c2438ec222
commit 8dde2dee85
3 changed files with 18 additions and 14 deletions
+1 -1
View File
@@ -2413,7 +2413,7 @@ irc_protocol_cmd_001 (struct t_irc_server *server, const char *command,
away_msg = strdup (server->away_message);
if (away_msg)
{
irc_command_away_server (server, away_msg);
irc_command_away_server (server, away_msg, 0);
free (away_msg);
}
}