mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-16 09:01:59 -05:00
Make sure that all callsigns from i3=1, i3=2 and i3=4 messages are in the hashtable.
This commit is contained in:
parent
e0291245e3
commit
8a20b97597
@ -439,9 +439,11 @@ subroutine unpack77(c77,msg,unpk77_success)
|
|||||||
if(iflip.eq.0) then
|
if(iflip.eq.0) then
|
||||||
call_1=call_3
|
call_1=call_3
|
||||||
call_2=adjustl(c11)//' '
|
call_2=adjustl(c11)//' '
|
||||||
|
call add_call_to_recent_calls(call_2)
|
||||||
else
|
else
|
||||||
call_1=adjustl(c11)//' '
|
call_1=adjustl(c11)//' '
|
||||||
call_2=call_3
|
call_2=call_3
|
||||||
|
call add_call_to_recent_calls(call_1)
|
||||||
endif
|
endif
|
||||||
if(icq.eq.0) then
|
if(icq.eq.0) then
|
||||||
if(nrpt.eq.0) msg=trim(call_1)//' '//trim(call_2)
|
if(nrpt.eq.0) msg=trim(call_1)//' '//trim(call_2)
|
||||||
@ -1209,6 +1211,9 @@ subroutine add_call_to_recent_calls(callsign)
|
|||||||
recent_calls(1)=callsign
|
recent_calls(1)=callsign
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
! Make sure that callsign is hashed
|
||||||
|
call save_hash_call(callsign,n10,n12,n22)
|
||||||
|
|
||||||
return
|
return
|
||||||
end subroutine add_call_to_recent_calls
|
end subroutine add_call_to_recent_calls
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user