summaryrefslogtreecommitdiff
path: root/py_modules/lsfg_vk
diff options
context:
space:
mode:
Diffstat (limited to 'py_modules/lsfg_vk')
-rw-r--r--py_modules/lsfg_vk/steam_service.py2
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 201441e..a952fcb 100644
--- a/py_modules/lsfg_vk/steam_service.py
+++ b/py_modules/lsfg_vk/steam_service.py
@@ -35,7 +35,7 @@ def classify_shortcut_transport(executable: Optional[str], launch_options: Optio
option_tokens = _split_command(launch_options)
if executable_tokens is None or option_tokens is None or not executable_tokens:
return {"kind": "host"}
- direct_flatpak = executable_tokens[0] == "/usr/bin/flatpak"
+ direct_flatpak = executable_tokens[0] in {"flatpak", "/usr/bin/flatpak"}
managed_wrapper = len(executable_tokens) == 1 and _is_managed_wrapper(executable_tokens[0])
if not direct_flatpak and not managed_wrapper:
return {"kind": "host"}