1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-12 14:14:48 +02:00

Fix IRC command /who (nothing was displayed if WeeChat already checked channel for away nicks) (bug #25736)

This commit is contained in:
Sebastien Helleu
2009-03-01 09:36:05 +01:00
parent 1a69bbcb1e
commit 882be565c3
+12 -15
View File
@@ -3668,23 +3668,20 @@ irc_protocol_cmd_352 (struct t_irc_server *server, const char *command,
}
ptr_channel = irc_channel_search (server, argv[3]);
if (ptr_channel)
if (ptr_channel && (ptr_channel->checking_away > 0))
{
if (ptr_channel->checking_away > 0)
ptr_nick = irc_nick_search (ptr_channel, argv[7]);
if (ptr_nick)
{
ptr_nick = irc_nick_search (ptr_channel, argv[7]);
if (ptr_nick)
{
if (ptr_nick->host)
free (ptr_nick->host);
length = strlen (argv[4]) + 1 + strlen (argv[5]) + 1;
ptr_nick->host = malloc (length);
if (ptr_nick->host)
snprintf (ptr_nick->host, length, "%s@%s", argv[4], argv[5]);
if (pos_attr)
irc_nick_set_away (ptr_channel, ptr_nick,
(pos_attr[0] == 'G') ? 1 : 0);
}
if (ptr_nick->host)
free (ptr_nick->host);
length = strlen (argv[4]) + 1 + strlen (argv[5]) + 1;
ptr_nick->host = malloc (length);
if (ptr_nick->host)
snprintf (ptr_nick->host, length, "%s@%s", argv[4], argv[5]);
if (pos_attr)
irc_nick_set_away (ptr_channel, ptr_nick,
(pos_attr[0] == 'G') ? 1 : 0);
}
}
else