Must return the state of the call to super() in Subscribable's purge.

This commit is contained in:
Colin Kuskie 2010-04-11 19:56:32 -07:00
parent a7598482c5
commit 873c07ac73

View file

@ -433,9 +433,8 @@ override purge => sub {
my $group = $self->getSubscriptionGroup();
$group->delete if $group;
super();
return;
return super();
};
#----------------------------------------------------------------------------