1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-15 04:28:09 -04:00

/SET netsplit_nicks_hide_threshold must not be smaller than /SET

netsplit_max_nicks or no nicks were printed with netsplits.


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1597 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-06-29 23:11:43 +00:00 committed by cras
parent f20a6b0198
commit f70160c503

View File

@ -346,6 +346,8 @@ static void read_settings(void)
netsplit_max_nicks = settings_get_int("netsplit_max_nicks");
netsplit_nicks_hide_threshold =
settings_get_int("netsplit_nicks_hide_threshold");
if (netsplit_nicks_hide_threshold < netsplit_max_nicks)
netsplit_max_nicks = netsplit_nicks_hide_threshold;
}
void fe_netsplit_init(void)