mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-26 22:09:26 +01:00
DualIndexHashObject: fix removing secondary index on "empty"
This commit is contained in:
parent
4c3f752132
commit
95f2cfdd55
@ -327,8 +327,8 @@ sub remove {
|
|||||||
my $name2 = $data->{_name};
|
my $name2 = $data->{_name};
|
||||||
$name2 = "\"$name2\"" if $name2 =~ / /;
|
$name2 = "\"$name2\"" if $name2 =~ / /;
|
||||||
|
|
||||||
# remove primary group if no more secondaries
|
# remove primary group if no more secondaries (only key left should be the _name key)
|
||||||
if (keys %{ $self->{hash}->{$lc_primary_index} } == 0) {
|
if (keys %{ $self->{hash}->{$lc_primary_index} } == 1) {
|
||||||
delete $self->{hash}->{$lc_primary_index};
|
delete $self->{hash}->{$lc_primary_index};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user