diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2026-09-07 20:16:09 -0400 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2026-09-07 20:16:09 -0400 |
| commit | e21eee83fc58fee3481aa0e17feb7cd9a8d8750e (patch) | |
| tree | 96cb00068ce1ae0dcdce7d9fed000ad10ac7db35 /py_modules/lsfg_vk | |
| parent | 22db1125238e54b29538102727c36284e122e703 (diff) | |
| download | decky-lsfg-vk-e21eee83fc58fee3481aa0e17feb7cd9a8d8750e.tar.gz decky-lsfg-vk-e21eee83fc58fee3481aa0e17feb7cd9a8d8750e.zip | |
Support lowercase Steam shortcut names and collapsible profile details
Diffstat (limited to 'py_modules/lsfg_vk')
| -rw-r--r-- | py_modules/lsfg_vk/steam_service.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py_modules/lsfg_vk/steam_service.py b/py_modules/lsfg_vk/steam_service.py index f46a091..9a6570f 100644 --- a/py_modules/lsfg_vk/steam_service.py +++ b/py_modules/lsfg_vk/steam_service.py @@ -111,7 +111,7 @@ class SteamService(BaseService): if not isinstance(shortcut, dict): return None appid = shortcut.get("appid") - name = shortcut.get("AppName") + name = shortcut.get("AppName") or 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 & 0xffffffff), "name": name, "nonSteam": True} |
