mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 12:53:42 +02:00
revert netsplit print optimisation
this reverts part of #465 unfortunately we need to further refine the initial patch - when filtering by channel, the whole split is cleaned up nevertheless - something similar happens for the netjoins - furthermore, we cannot wait only for PUBLIC msgs, j/p/q are equivalently relevant for temporal integrity
This commit is contained in:
parent
b3b68a4ae7
commit
fa8508404f
2 changed files with 4 additions and 10 deletions
|
|
@ -253,15 +253,12 @@ static void sig_print_starting(TEXT_DEST_REC *dest)
|
|||
if (!IS_IRC_SERVER(dest->server))
|
||||
return;
|
||||
|
||||
if (!(dest->level & MSGLEVEL_PUBLIC))
|
||||
return;
|
||||
|
||||
if (!server_ischannel(dest->server, dest->target))
|
||||
return;
|
||||
|
||||
rec = netjoin_find_server(IRC_SERVER(dest->server));
|
||||
if (rec != NULL && rec->netjoins != NULL)
|
||||
print_netjoins(rec, dest->target);
|
||||
print_netjoins(rec, NULL);
|
||||
}
|
||||
|
||||
static int sig_check_netjoins(void)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue