From 4694824fc69bce832d8c61c5867c169652b9b315 Mon Sep 17 00:00:00 2001 From: Tobey Blaber Date: Mon, 2 Sep 2024 21:58:07 +0100 Subject: [PATCH] fix casing --- src/launchers/epic/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/launchers/epic/app.ts b/src/launchers/epic/app.ts index 550ebe7..e2bc31c 100644 --- a/src/launchers/epic/app.ts +++ b/src/launchers/epic/app.ts @@ -61,7 +61,7 @@ export const getAppById = async (id: string) => await Promise.all([ getLauncherInstalled() .then((apps) => - apps.find((app) => [app.ArtifactId, app.AppName].includes(id)) + apps.find((app) => [app.artifactId, app.appName].includes(id)) ), getManifestById(id), ]),