Skip to content

Commit

Permalink
fix: corrected typo breaking game loading
Browse files Browse the repository at this point in the history
  • Loading branch information
Tormak9970 committed Oct 12, 2023
1 parent ce645a0 commit 80ade96
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/lib/controllers/SteamController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}

Expand Down

0 comments on commit 80ade96

Please sign in to comment.