diff options
| author | Kurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com> | 2026-09-10 16:47:38 -0400 |
|---|---|---|
| committer | Kurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com> | 2026-09-10 16:47:38 -0400 |
| commit | 912237e98462eaa22084809c11446f5e031d08b9 (patch) | |
| tree | 77f98b95870bb8d5a6c64ae51f5f8ce9fd46adc7 /src | |
| parent | 2a1c019b328bac6a2e8c12debeb1c832f8193bda (diff) | |
| download | decky-lsfg-vk-912237e98462eaa22084809c11446f5e031d08b9.tar.gz decky-lsfg-vk-912237e98462eaa22084809c11446f5e031d08b9.zip | |
fix: save now playing steam profile by app id
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/Content.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/Content.tsx b/src/components/Content.tsx index 241ab92..a300f6f 100644 --- a/src/components/Content.tsx +++ b/src/components/Content.tsx @@ -50,6 +50,7 @@ export function Content() { runningGame, setSelectedAppId, save, + saveFor, enable, enableAll, repair, @@ -138,7 +139,7 @@ export function Content() { game={runningGame} config={runningConfig} onConfigChange={async (field, value) => { - await save({ ...runningConfig, [field]: value }, true); + await saveFor(runningGame.appid, { ...runningConfig, [field]: value }, true); }} /> ) : runningFlatpak ? ( |
