kopia lustrzana https://gitlab.com/gridtracker.org/gridtracker
Merge branch 'pota-corner-case' into 'master'
Fix corner case of POTA where not spotted, schedule but out of window See merge request gridtracker.org/gridtracker!234 If this is changing anything in the UI or operational behavior, please prepare to update the wiki!merge-requests/201/merge
commit
f4d54e0c1b
|
@ -7198,7 +7198,14 @@ function handleWsjtxDecode(newMessage)
|
|||
}
|
||||
}
|
||||
}
|
||||
potaSpotFromDecode(callsign);
|
||||
if (callsign.pota.length > 0)
|
||||
{
|
||||
potaSpotFromDecode(callsign);
|
||||
}
|
||||
else if (CQ == true && msgDXcallsign == "CQ POTA")
|
||||
{
|
||||
callsign.pota = ["?-????"];
|
||||
}
|
||||
}
|
||||
else if (CQ == true && msgDXcallsign == "CQ POTA")
|
||||
{
|
||||
|
|
Ładowanie…
Reference in New Issue