don't filter callsigns with current pota data from being checked

merge-requests/179/head test_POTAWanted_Beta6
Matthew Chambers 2022-07-24 10:00:44 -05:00
rodzic 58540c6cff
commit 6b89977a62
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -7228,7 +7228,7 @@ function handleWsjtxDecode(newMessage)
}
}
if (callsign.pota == null && g_potaSpots && g_potaSpots.some(item => item.activator === callsign.DEcall))
if (g_potaSpots && g_potaSpots.some(item => item.activator === callsign.DEcall))
{
callsign.pota = g_potaSpots.filter(item => item.activator === callsign.DEcall)[0];
}