settings-file-dialogs
Matthew Chambers 2022-05-19 21:10:32 -05:00
rodzic c17e84d932
commit aa2ccc2c31
2 zmienionych plików z 2 dodań i 6 usunięć

Wyświetl plik

@ -7214,10 +7214,6 @@ function handleWsjtxDecode(newMessage)
{ {
callsign.pota = g_potaSpots.filter(item => item.activator === callsign.DEcall)[0]; callsign.pota = g_potaSpots.filter(item => item.activator === callsign.DEcall)[0];
} }
else
{
callsign.pota = g_NotaAPota;
}
if (newMessage.NW) if (newMessage.NW)
{ {

Wyświetl plik

@ -381,8 +381,8 @@ const ROSTER_COLUMNS = {
tableData: (callObj) => ({ tableData: (callObj) => ({
name: "POTA", name: "POTA",
rawAttrs: callObj.style.pota, rawAttrs: callObj.style.pota,
title: callObj.pota.name, title: callObj.pota ? callObj.pota.name : "",
html: callObj.pota.reference html: callObj.pota ? callObj.pota.reference : ""
}) })
} }
} }