3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-04 18:38:47 +02: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 {
my ($self, $line, $channel) = @_;
$channel = lc $channel;
return $line if not exists $self->{pbot}->{nicklist}->{nicklist}->{$channel};
my $nicklist = $self->{pbot}->{nicklist}->{nicklist};
return $line if not exists $nicklist->{$channel};
my $zwsp = "\x{200b}";
foreach my $nick (keys %{$nicklist->{$channel}}) {
my $n = quotemeta $nicklist->{$channel}->{$nick}->{nick};