Missing hash dereference

This commit is contained in:
Pragmatic Software 2016-11-04 12:40:17 -07:00
parent 6fbd6d5620
commit 4ed61096dd
1 changed files with 3 additions and 3 deletions

View File

@ -55,10 +55,10 @@ sub remove {
if (exists $self->{blacklist}->{$channel}) {
delete $self->{blacklist}->{$channel}->{$hostmask};
}
if (keys $self->{blacklist}->{$channel} == 0) {
delete $self->{blacklist}->{$channel};
if (keys %{ $self->{blacklist}->{$channel} } == 0) {
delete $self->{blacklist}->{$channel};
}
}
$self->save_blacklist();