Skip to content

Commit

Permalink
fix: added handling for edge case in shortcut appname field casing
Browse files Browse the repository at this point in the history
  • Loading branch information
Tormak9970 committed Nov 14, 2024
1 parent c7ac1c5 commit 363bc81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/controllers/SteamController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ export class SteamController {
const structuredShortcuts = Object.values(shortcuts).map((shortcut: any) => {
return {
"appid": shortcut.appid,
"name": shortcut.AppName ?? shortcut.appname
"name": shortcut.AppName ?? shortcut.appName ?? shortcut.appname
};
});
nonSteamGames.set(structuredShortcuts);
Expand Down

0 comments on commit 363bc81

Please sign in to comment.