From b4e91590481b384c06c1f238e1761fb3c13053c0 Mon Sep 17 00:00:00 2001 From: dusk <y.bera003.06@protonmail.com> Date: Thu, 20 Mar 2025 12:58:12 +0300 Subject: [PATCH] fix: get custom icons for steam games if any --- src/lib/steam.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/steam.ts b/src/lib/steam.ts index 5271fb2..eaf5779 100644 --- a/src/lib/steam.ts +++ b/src/lib/steam.ts @@ -28,7 +28,7 @@ export const steamUpdateNowPlaying = async () => { if (!profile.gameid) { throw "no game is being played" } - var icons = await griddbClient.getIconsBySteamAppId(profile.gameid, ['official']) + var icons = await griddbClient.getIconsBySteamAppId(profile.gameid, ['official', 'custom']) //console.log(icons) var game: LastGame = { name: profile.gameextrainfo,