removed the better release for modrinth modpacks

Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
This commit is contained in:
Trial97 2023-10-13 00:04:36 +03:00
parent ca4b58d5d7
commit 32eaaa25d9
No known key found for this signature in database
GPG Key ID: 55EF5DA53DB36318

View File

@ -111,9 +111,8 @@ void loadIndexedVersions(Modpack& pack, QJsonDocument& doc)
unsortedVersions.append(file); unsortedVersions.append(file);
} }
auto orderSortPredicate = [](const ModpackVersion& a, const ModpackVersion& b) -> bool { auto orderSortPredicate = [](const ModpackVersion& a, const ModpackVersion& b) -> bool {
bool a_better_release = a.version_type <= b.version_type;
// dates are in RFC 3339 format // dates are in RFC 3339 format
return a.date > b.date && a_better_release; return a.date > b.date;
}; };
std::sort(unsortedVersions.begin(), unsortedVersions.end(), orderSortPredicate); std::sort(unsortedVersions.begin(), unsortedVersions.end(), orderSortPredicate);