From 991edaeb6b39ee9a7628f036ac2f1c57cf1caea1 Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Sun, 6 Sep 2026 23:40:23 -0400 Subject: fix: use unsigned non-steam app IDs --- py_modules/lsfg_vk/steam_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'py_modules') diff --git a/py_modules/lsfg_vk/steam_service.py b/py_modules/lsfg_vk/steam_service.py index 54ac359..8c50cfd 100644 --- a/py_modules/lsfg_vk/steam_service.py +++ b/py_modules/lsfg_vk/steam_service.py @@ -106,7 +106,7 @@ class SteamService(BaseService): name = shortcut.get("AppName") if not isinstance(appid, int) or appid == 0 or not isinstance(name, str) or not name: return None - return {"appid": str(appid), "name": name, "nonSteam": True} + return {"appid": str(appid & 0xffffffff), "name": name, "nonSteam": True} def _shortcut_games(self): games = {} -- cgit v1.2.3