diff --git a/src/main/java/net/neoforged/waifu/GameVersionIndexService.java b/src/main/java/net/neoforged/waifu/GameVersionIndexService.java index 1859be2..2cf9004 100644 --- a/src/main/java/net/neoforged/waifu/GameVersionIndexService.java +++ b/src/main/java/net/neoforged/waifu/GameVersionIndexService.java @@ -129,7 +129,7 @@ public void runWithExceptions() { .stream().map(m -> m.getProjectId(platform)) .filter(Objects::nonNull).collect(Collectors.toSet()); for (PlatformMod mod : latestReleasedMod) { - if (!knownModIds.contains(mod)) { + if (!knownModIds.contains(mod.getId())) { // ...and queue them for indexing var file = mod.getLatestFile(version); if (file != null) {