From 80ade96a2a4d8b9b57c3f85a6837fe1cf5223df7 Mon Sep 17 00:00:00 2001 From: Tormak <63308171+Tormak9970@users.noreply.github.com> Date: Thu, 12 Oct 2023 11:12:34 -0400 Subject: [PATCH] fix: corrected typo breaking game loading --- src/lib/controllers/SteamController.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/lib/controllers/SteamController.ts b/src/lib/controllers/SteamController.ts index 7af42f02..ad0979f0 100644 --- a/src/lib/controllers/SteamController.ts +++ b/src/lib/controllers/SteamController.ts @@ -127,11 +127,12 @@ export class SteamController { if (!unfilteredKeys.includes(appId)) { unfilteredKeys.push(appId); // @ts-ignore - unfilteredKeys[appId] = {}; + unfiltered[appId] = {}; } if (!Object.keys(res[appId]).includes(libraryCacheLUT[type])) res[appId][libraryCacheLUT[type]] = fileEntry.path; - unfiltered[appId][libraryCacheLUT[type]] = fileEntry.path + + unfiltered[appId][libraryCacheLUT[type]] = fileEntry.path; } }