diff options
| author | Kurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com> | 2025-07-19 19:39:04 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-19 19:39:04 -0400 |
| commit | 31265ff5732ed65a273a2c0aa51995c3431d6908 (patch) | |
| tree | 8564a2863c57aa178b662e52cc8ed846b48c2a8f /py_modules | |
| parent | 1d044bf320cd0c9d03daa8213df078e834e20c49 (diff) | |
| download | decky-lsfg-vk-31265ff5732ed65a273a2c0aa51995c3431d6908.tar.gz decky-lsfg-vk-31265ff5732ed65a273a2c0aa51995c3431d6908.zip | |
Update py_modules/lsfg_vk/config_schema.py
Diffstat (limited to 'py_modules')
| -rw-r--r-- | py_modules/lsfg_vk/config_schema.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/py_modules/lsfg_vk/config_schema.py b/py_modules/lsfg_vk/config_schema.py index 1098248..9ab8bf5 100644 --- a/py_modules/lsfg_vk/config_schema.py +++ b/py_modules/lsfg_vk/config_schema.py @@ -356,9 +356,9 @@ class ConfigurationManager: elif key == "SteamDeck": script_values["disable_steamdeck_mode"] = value == "0" - except Exception: - # If parsing fails, return empty dict (will use defaults) - pass + except (ValueError, KeyError, IndexError) as e: + # If parsing fails, log the error and return empty dict (will use defaults) + print(f"Error parsing script content: {e}") return script_values |
