mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
Autorejoin when join temporarily fails because of netsplit is handled
better now. Irssi prints a nice message about it only once and you can abort it with /RMREJOINS command. "channel query" -> "channel joined" channels_join() must not use cmd_return|param_error() commands since we don't necessarily call it from command handler and signal_stop() could cause some damage. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@739 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
f850204479
commit
6a3efe49ab
8 changed files with 169 additions and 32 deletions
|
|
@ -107,7 +107,7 @@ static void event_end_of_names(const char *data, SERVER_REC *server)
|
|||
chanrec = irc_channel_find(server, channel);
|
||||
if (chanrec != NULL && !chanrec->names_got) {
|
||||
chanrec->names_got = TRUE;
|
||||
signal_emit("channel query", 1, chanrec);
|
||||
signal_emit("channel joined", 1, chanrec);
|
||||
}
|
||||
|
||||
g_free(params);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue