Respect irc_join_delay if connect command set

This commit is contained in:
TingPing 2013-05-17 05:28:45 -03:00
parent ef58a267b0
commit c83ca8f85a
1 changed files with 4 additions and 2 deletions

View File

@ -1425,8 +1425,10 @@ inbound_login_end (session *sess, char *text)
}
}
/* send JOIN now or wait? */
if (serv->network && ((ircnet *)serv->network)->pass && prefs.hex_irc_join_delay && inbound_nickserv_login (serv))
/* wait for join if command or nickserv set */
if (serv->network && prefs.hex_irc_join_delay
&& ((((ircnet *)serv->network)->pass && inbound_nickserv_login (serv))
|| ((ircnet *)serv->network)->commandlist))
{
serv->joindelay_tag = fe_timeout_add (prefs.hex_irc_join_delay * 1000, check_autojoin_channels, serv);
}