mirror of
https://github.com/irssi/irssi.git
synced 2026-08-09 20:00:23 +02:00
Netsplit fixes
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@663 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
0790ad02f6
commit
e316475afd
2 changed files with 4 additions and 1 deletions
|
|
@ -355,7 +355,7 @@ static void event_mode(const char *data, IRC_SERVER_REC *server,
|
|||
if (*mode == 'o' && *nick != NULL) {
|
||||
/* give/remove ops */
|
||||
rec = netjoin_find(server, *nick);
|
||||
if (rec != NULL && !netjoin_set_operator(rec, channel, type == '+'))
|
||||
if (rec == NULL || !netjoin_set_operator(rec, channel, type == '+'))
|
||||
show = TRUE;
|
||||
nick++;
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue