1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-10 19:53:13 +02:00

Do not send WHO on channel joined (to check away nicks) if option irc.network.away_check is set to 0

This commit is contained in:
Sebastien Helleu
2010-09-12 10:42:29 +02:00
parent edb839732e
commit 5d0ad1f631
5 changed files with 8 additions and 8 deletions
+1 -2
View File
@@ -81,7 +81,6 @@ char *irc_server_option_default[IRC_SERVER_NUM_OPTIONS] =
void irc_server_reconnect (struct t_irc_server *server);
void irc_server_check_away ();
void irc_server_free_data (struct t_irc_server *server);
@@ -3383,7 +3382,7 @@ irc_server_check_away ()
for (ptr_channel = ptr_server->channels; ptr_channel; ptr_channel = ptr_channel->next_channel)
{
if (ptr_channel->type == IRC_CHANNEL_TYPE_CHANNEL)
irc_channel_check_away (ptr_server, ptr_channel, 0);
irc_channel_check_away (ptr_server, ptr_channel);
}
}
}