Merge branch 'roster_lotw_harmonization' into 'master'

Change LOTW filtering behavior in CR

See merge request gridtracker.org/gridtracker!9
merge-requests/31/head
Paul Traina 2020-10-31 01:15:14 +00:00
commit a5587c5bf3
1 zmienionych plików z 9 dodań i 0 usunięć

Wyświetl plik

@ -648,6 +648,15 @@ function viewRoster()
callRoster[callHash].tx = false;
continue;
}
if ( g_rosterSettings.maxLoTW < 27 )
{
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 )