Skip to content

Commit 91a097d

Browse files
committed
Pass along userlist events
Otherwise nothing else will be able to catch them. Heartbeat doesn't work without this.
1 parent 263a682 commit 91a097d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lib/Whateverable/Userlist.pm6

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ method irc-nick($event) {
4949
%!userlist{$channel}{$event.new-nick} = True;
5050
}
5151
}
52+
$.NEXT
5253
}
5354
method irc-join($event) {
5455
$!userlist-lock.protect: {
@@ -57,18 +58,21 @@ method irc-join($event) {
5758
}
5859
%!userlist{$event.channel}{$event.nick} = True;
5960
}
61+
$.NEXT
6062
}
6163
method irc-part($event) {
6264
$!userlist-lock.protect: {
6365
%!userlist{$event.channel}{$event.nick}:delete;
6466
}
67+
$.NEXT
6568
}
6669
method irc-quit($event) {
6770
$!userlist-lock.protect: {
6871
for %!userlist.keys -> $channel {
6972
%!userlist{$channel}{$event.nick}:delete;
7073
}
7174
}
75+
$.NEXT
7276
}
7377

7478
has %!userlist-temp; # for storing partial messages

0 commit comments

Comments
 (0)