mirror of
https://github.com/irssi/irssi.git
synced 2024-10-27 05:20:20 -04:00
Merge pull request #647 from dequis/fix-early-ison-take-2
notify-ison: Don't send ison before the connection is done
This commit is contained in:
commit
fa1a056291
@ -80,6 +80,10 @@ static void ison_send(IRC_SERVER_REC *server, GString *cmd)
|
||||
{
|
||||
MODULE_SERVER_REC *mserver;
|
||||
|
||||
if (!server->connected) {
|
||||
return;
|
||||
}
|
||||
|
||||
mserver = MODULE_DATA(server);
|
||||
mserver->ison_count++;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user