X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXCron.pm;h=2a9913f1f9682a4a20bb62b84850c7dbbacadf96;hb=60d6599887f29ec966d075f413c2c73b9e913212;hp=868420585b70e416e48e9af0ed56e27a09a524ff;hpb=dbf7523a9b228dbdf1d03109afde351b8b194fab;p=spider.git diff --git a/perl/DXCron.pm b/perl/DXCron.pm index 86842058..2a9913f1 100644 --- a/perl/DXCron.pm +++ b/perl/DXCron.pm @@ -174,7 +174,7 @@ sub process sub connected { my $call = uc shift; - return DXChannel->get($call); + return DXChannel::get($call); } # is it remotely connected anywhere (with exact callsign)? @@ -224,7 +224,7 @@ sub presentish_on sub last_connect { my $call = uc shift; - return $main::systime if DXChannel->get($call); + return $main::systime if DXChannel::get($call); my $user = DXUser->get($call); return $user ? $user->lastin : 0; }