fix: get custom icons for steam games if any

This commit is contained in:
dusk 2025-03-20 12:58:12 +03:00
parent 1dc349a246
commit b4e9159048
Signed by: dusk
SSH Key Fingerprint: SHA256:Abmvag+juovVufZTxyWY8KcVgrznxvBjQpJesv071Aw

@ -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,