fix: swapped operands
All checks were successful
Build / build (push) Successful in 49s
Build / build (pull_request) Successful in 2m26s

This commit is contained in:
Sainan 2025-06-06 22:13:24 +02:00
parent d739945a1d
commit 37a82b8902

View File

@ -310,7 +310,7 @@ export const getInventoryResponse = async (
// Fix nemesis for older versions // Fix nemesis for older versions
if ( if (
inventoryResponse.Nemesis && inventoryResponse.Nemesis &&
version_compare(getNemesisManifest(inventoryResponse.Nemesis.manifest).minBuild, buildLabel) < 0 version_compare(buildLabel, getNemesisManifest(inventoryResponse.Nemesis.manifest).minBuild) < 0
) { ) {
inventoryResponse.Nemesis = undefined; inventoryResponse.Nemesis = undefined;
} }