Purge internal data before v1.22.1010 only

merge-requests/201/merge
Tag 2022-10-15 11:29:02 -07:00
rodzic e040fc7645
commit 8c34b432c6
1 zmienionych plików z 6 dodań i 1 usunięć

Wyświetl plik

@ -20,7 +20,12 @@ if (typeof localStorage.currentVersion == "undefined" || localStorage.currentVer
gui.App.clearCache();
// If the version changed, the interanl qso file is possibly out of date so don't read it
g_readInternalQso = false;
// 1221010 introduced "|"s in DXCC, CQ and ITU g_tracker so older data is no longer valid
// update this number if anything in the internal_qso format has changed
if (gtVersion < 1221010)
{
g_readInternalQso = false;
}
}
var vers = String(gtVersion);