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

Checking that autojoined channels weren't already joined in same chatnet had

a typo so it checked all servers that the channel wasn't joined.
s/servers/chatnet_servers/


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1890 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-10-22 09:33:32 +00:00 committed by cras
parent 230a51cefd
commit 89794348b1

View File

@ -167,7 +167,7 @@ static void event_connected(SERVER_REC *server)
/* check that we haven't already joined this channel in
same chat network connection.. */
if (channel_find_servers(servers, rec->name) == NULL)
if (channel_find_servers(chatnet_servers, rec->name) == NULL)
g_string_sprintfa(chans, "%s,", rec->name);
}