mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-22 12:23:37 -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
|
||||
call_1=call_3
|
||||
call_2=adjustl(c11)//' '
|
||||
call add_call_to_recent_calls(call_2)
|
||||
else
|
||||
call_1=adjustl(c11)//' '
|
||||
call_2=call_3
|
||||
call add_call_to_recent_calls(call_1)
|
||||
endif
|
||||
if(icq.eq.0) then
|
||||
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
|
||||
endif
|
||||
|
||||
! Make sure that callsign is hashed
|
||||
call save_hash_call(callsign,n10,n12,n22)
|
||||
|
||||
return
|
||||
end subroutine add_call_to_recent_calls
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user