diff options
| author | David Phillips <david@sighup.nz> | 2018-09-10 19:52:06 +1200 |
|---|---|---|
| committer | David Phillips <david@sighup.nz> | 2018-09-10 19:56:02 +1200 |
| commit | 2dde74ed88250353c4bcbeab13163f6e93d02c05 (patch) | |
| tree | 72e2d1a42796b4a992d6f4939a07556b0f625f7f | |
| parent | 3b62229959599e93a0baa491c6fef75e6af0dde0 (diff) | |
| download | idalius-2dde74ed88250353c4bcbeab13163f6e93d02c05.tar.xz | |
Fix regression with nick ignoring
| -rwxr-xr-x | idalius.pl | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -154,7 +154,8 @@ sub strike_add { } sub should_ignore { - return grep @{$config{ignore}}; + my ($nick) = @_; + return grep {$_ eq $nick} @{$config{ignore}}; } sub _start { |
