3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-11-23 04:19:27 +01:00

Interpreter: minor clean-up

This commit is contained in:
Pragmatic Software 2020-02-06 03:29:48 -08:00
parent d5ec26c8b3
commit 1a2d463f5b

View File

@ -920,8 +920,8 @@ sub handle_result {
sub dehighlight_nicks { sub dehighlight_nicks {
my ($self, $line, $channel) = @_; my ($self, $line, $channel) = @_;
$channel = lc $channel; $channel = lc $channel;
return $line if not exists $self->{pbot}->{nicklist}->{nicklist}->{$channel};
my $nicklist = $self->{pbot}->{nicklist}->{nicklist}; my $nicklist = $self->{pbot}->{nicklist}->{nicklist};
return $line if not exists $nicklist->{$channel};
my $zwsp = "\x{200b}"; my $zwsp = "\x{200b}";
foreach my $nick (keys %{$nicklist->{$channel}}) { foreach my $nick (keys %{$nicklist->{$channel}}) {
my $n = quotemeta $nicklist->{$channel}->{$nick}->{nick}; my $n = quotemeta $nicklist->{$channel}->{$nick}->{nick};