-botcmd isn't now sent to channels when /UPGRADEing.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2078 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-11-19 13:14:37 +00:00 committed by cras
commit ee708c1469
3 changed files with 5 additions and 0 deletions

View file

@ -22,6 +22,7 @@ unsigned int synced:1; /* Channel synced - all queries done */
unsigned int joined:1; /* Have we even received JOIN event for this channel? */
unsigned int left:1; /* You just left the channel */
unsigned int kicked:1; /* You just got kicked */
unsigned int session_rejoin:1; /* This channel was joined with /UPGRADE */
unsigned int destroying:1;
/* Return the information needed to call SERVER_REC->channels_join() for

View file

@ -199,6 +199,9 @@ void channel_send_autocommands(CHANNEL_REC *channel)
g_return_if_fail(IS_CHANNEL(channel));
if (channel->session_rejoin)
return;
rec = channel_setup_find(channel->name, channel->server->connrec->chatnet);
if (rec == NULL || rec->autosendcmd == NULL || !*rec->autosendcmd)
return;