From 472b7e8a5b0018c43201d0dee35d7a8403fe3773 Mon Sep 17 00:00:00 2001 From: Nate Pelzel Date: Fri, 4 Sep 2026 13:32:02 -0600 Subject: [PATCH] Fix Install in the missing-dependency modal The "Missing required dependency" modal calls download_game without enableUpdates, but the command requires it, so clicking Install fails with: invalid args `enableUpdates` for command `download_game`: command download_game missing required key enableUpdates Pass it the same way the library page does: true when installing the latest version. --- desktop/main/components/DependencyRequiredModal.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/desktop/main/components/DependencyRequiredModal.vue b/desktop/main/components/DependencyRequiredModal.vue index ab805b652..77050780f 100644 --- a/desktop/main/components/DependencyRequiredModal.vue +++ b/desktop/main/components/DependencyRequiredModal.vue @@ -95,6 +95,7 @@ async function install() { versionId: model.value.versionId, installDir: installDir.value, targetPlatform: version.platform, + enableUpdates: versionOptions.indexOf(version) === 0, }); cancel(); } catch (error) {