X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fset%2Flocation.pl;h=25db6ba609259c4c3f2f803f4edfe7decd4ca4a4;hb=c876cb33f90144dd899169954ffeb3285302897f;hp=41f44194005f73d2f404ead1377d220880ef45a8;hpb=3e6971e33c8757e1e952922c44903707379dd100;p=spider.git diff --git a/cmd/set/location.pl b/cmd/set/location.pl index 41f44194..25db6ba6 100644 --- a/cmd/set/location.pl +++ b/cmd/set/location.pl @@ -15,6 +15,7 @@ $line =~ s/^\s+//; $line =~ s/\s+$//; return (1, $self->msg('loce1')) if !$line; +return (1, $self->msg('loce3', uc $line)) if DXBearing::is_qra($line); return (1, $self->msg('loce2', $line)) unless $line =~ /\d+ \d+ [NnSs] \d+ \d+ [EeWw]/o; $user = DXUser->get_current($call); @@ -23,7 +24,9 @@ if ($user) { my ($lat, $long) = DXBearing::stoll($line); $user->lat($lat); $user->long($long); - DXProt::broadcast_all_ak1a(DXProt::pc41($call, 3, $line), $DXProt::me); + my $s = DXProt::pc41($call, 3, $line); + DXProt::eph_dup($s); + DXProt::broadcast_all_ak1a($s, $DXProt::me) ; unless ($user->qra && DXBearing::is_qra($user->qra) ) { my $qra = DXBearing::lltoqra($lat, $long); $user->qra($qra);