X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXCron.pm;h=2a9913f1f9682a4a20bb62b84850c7dbbacadf96;hb=c3c15883cf25add24fc49e32eb0d17dce6839a62;hp=868420585b70e416e48e9af0ed56e27a09a524ff;hpb=bcf099764f49e68ef016964e420b906e7900623e;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; }