Display QRX from unknown DXCC entities

merge-requests/201/merge
Sebastian Delmont 2022-10-13 15:57:45 -04:00
rodzic 7e301597b3
commit 2ed51c1429
2 zmienionych plików z 3 dodań i 9 usunięć

Wyświetl plik

@ -22,7 +22,7 @@ function processRosterFiltering(callRoster, rosterSettings)
callObj.reset = true;
continue;
}
if (!callObj.dxcc || callObj.dxcc == -1)
if (!callObj.dxcc)
{
entry.tx = false;
continue;
@ -238,12 +238,6 @@ function processRosterFiltering(callRoster, rosterSettings)
continue;
}
if (callObj.dxcc === -1)
{
entry.tx = false;
continue;
}
if (g_rosterSettings.hunting == "dxccs" && r_currentDXCCs != -1)
{
if (callObj.dxcc != r_currentDXCCs)

Wyświetl plik

@ -44,7 +44,7 @@ function processRosterHunting(callRoster, rosterSettings, awardTracker)
}
// Only render entries with `tx == true`, ignore the rest
if (callObj.dxcc != -1 && entry.tx == true)
if (entry.tx == true)
{
// In layered mode ("Hunting: mixed") the workHashSuffix becomes a more stricter 'live band',
// while the layered suffix is a broader 'mixed band'
@ -294,7 +294,7 @@ function processRosterHunting(callRoster, rosterSettings, awardTracker)
}
// Hunting for DXCC
if (huntDXCC.checked)
if (huntDXCC.checked && callObj.dxcc && callObj.dxcc != -1)
{
let hash = String(callObj.dxcc) + "|" + workHashSuffix;
let layeredHash = rosterSettings.layeredMode && (String(callObj.dxcc) + "|" + layeredHashSuffix)