From 66ff43a4977e5877448981a7e3674a5c52b214ed Mon Sep 17 00:00:00 2001 From: minima Date: Thu, 13 Sep 2001 14:42:52 +0000 Subject: [PATCH] idon't route converted talks back down the incoming path --- perl/DXProt.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/perl/DXProt.pm b/perl/DXProt.pm index ca6e4728..02e3d3a8 100644 --- a/perl/DXProt.pm +++ b/perl/DXProt.pm @@ -525,7 +525,8 @@ sub normal if ((uc $to eq 'TO' && is_callsign(uc $call)) || is_callsign($call = uc $to)) { my $ref = Route::get($call); if ($ref) { - $ref->dxchan->talk($field[1], $call, undef, $field[3], $field[5]); + my $dxchan = $ref->dxchan; + $dxchan->talk($field[1], $call, undef, $field[3], $field[5]) if $dxchan != $self; return; } } -- 2.34.1