X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FThingy%2FRt.pm;h=fd67e9cc4600532e18307240cd29c4610a6351e9;hb=a9072bdb10a67ad28edda787cbf38018356b2db5;hp=685ef0c4d5ef7acaf45e47fa7fc03c2ff3423c43;hpb=4461c555c086c35adc0f458ffbe3e6a03cfc68a1;p=spider.git diff --git a/perl/Thingy/Rt.pm b/perl/Thingy/Rt.pm index 685ef0c4..fd67e9cc 100644 --- a/perl/Thingy/Rt.pm +++ b/perl/Thingy/Rt.pm @@ -131,7 +131,10 @@ sub handle_cf next if $call eq $main::mycall; RouteDB::delete($call, $chan_call); my $ref = Route::Node::get($call); - push @pc21, $ref->del($parent) if $ref; + if ($ref) { + my $r = $ref->del($parent); + push @pc21, $r if $r; + } } } if ($add) { @@ -139,7 +142,8 @@ sub handle_cf next if $call eq $main::mycall; RouteDB::update($call, $chan_call); my $here = $in{$call}; - push @pc19, $parent->add($call, 0, $here); + my $r = $parent->add($call, 0, $here); + push @pc19, $r if $r; } } $thing->{pc21n} = \@pc21 if @pc21; @@ -191,7 +195,7 @@ sub _add_user my $flag = shift; my @out = $node->add_user($user, $flag); - my $ur = _upd_user_rec($user, $node); + my $ur = _upd_user_rec($user, $node->{call}); $ur->put; return @out; }