1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-01 04:14:16 -04:00

Correct previous commit: fix away checking

git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5040 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Wouter Coekaerts 2009-03-15 16:25:42 +00:00 committed by coekie
parent d81ec45378
commit dde30e63d6

View File

@ -289,7 +289,7 @@ static void notifylist_check_join(IRC_SERVER_REC *server, const char *nick,
if (away != -1) rec->away = away;
rec->host_ok = TRUE;
rec->join_announced = TRUE;
rec->away_ok = TRUE;
rec->away_ok = !notify->away_check || !rec->away;
signal_emit("notifylist joined", 6,
server, rec->nick, rec->user, rec->host, realname, NULL);