allow store nodes that have a dxchannel
authorDirk Koopman <djk@tobit.co.uk>
Wed, 11 Jul 2007 18:46:39 +0000 (19:46 +0100)
committerDirk Koopman <djk@tobit.co.uk>
Wed, 11 Jul 2007 18:46:39 +0000 (19:46 +0100)
cmd/show/configuration.pl
perl/Version.pm

index 416e1a0e8fb6d97a5e0e82b45b99f5aa1d344799..3101c5352f0466d95e615ee5d98bea914c928036 100644 (file)
@@ -21,7 +21,7 @@ if ($list[0] && $list[0] =~ /^NOD/) {
        
        foreach my $n (@nodes) {
                $dxchan = $n->dxchan;
-               push @{$ch{$dxchan->call}}, $n;
+               push @{$ch{$dxchan->call}}, $n if $dxchan;
        }
 
        foreach my $call (sort keys %ch) {
index 646b2ef2d0e9a653123456d9fc3267916c5cca4e..353fc11aa00c68ff8fa85a510885d4b260ec4561 100644 (file)
@@ -11,6 +11,6 @@ use vars qw($version $subversion $build);
 
 $version = '1.54';
 $subversion = '0';
-$build = '114';
+$build = '115';
 
 1;