Make UsesLoTW a hard limit, not soft limit.

merge-requests/31/head
Paul Traina 2020-08-30 21:00:35 -07:00
rodzic 6e36a5bfe3
commit abac33abfc
1 zmienionych plików z 11 dodań i 1 usunięć

Wyświetl plik

@ -648,6 +648,16 @@ function viewRoster()
callRoster[callHash].tx = false;
continue;
}
if ( g_rosterSettings.maxLoTW < 27 )
{
debugger;
var months = (g_day - window.opener.g_lotwCallsigns[call]) / 30;
if ( months > g_rosterSettings.maxLoTW )
{
callRoster[callHash].tx = false;
continue;
}
}
}
if ( window.opener.g_callsignLookups.eqslUseEnable == true && g_rosterSettings.useseQSL == true )
@ -4287,4 +4297,4 @@ function doubleCompile(award, firstLevel)
}
return singleCompile(award,firstLevel);
}
}