Minor: add comment about index shift: 4 -> 5

This commit is contained in:
Gerhard Hoffmann 2024-05-14 12:51:32 +02:00
parent 90e4e21391
commit afbcccf785

View File

@ -651,6 +651,7 @@ bool Update::checkDownloadedJsonVersions(QStringList const& jsonFileNames) {
bool ok = false; bool ok = false;
int n = captured.toInt(&ok); int n = captured.toInt(&ok);
if (ok) { if (ok) {
// note: the '5' is correct
jsonNr = n + 5; jsonNr = n + 5;
} }
} }