summaryrefslogtreecommitdiff
path: root/src/components/Content.tsx
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2026-09-11 09:38:35 -0400
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2026-09-11 09:38:35 -0400
commita8388009b2ba141caafe7f2e35f7029d93e7811f (patch)
tree2f939dba1042a1d1d9c03e4aa3470ad6332864e2 /src/components/Content.tsx
parent9138886fd5315eb0e8c6a4a549a9d44f93ba3cde (diff)
downloaddecky-lsfg-vk-a8388009b2ba141caafe7f2e35f7029d93e7811f.tar.gz
decky-lsfg-vk-a8388009b2ba141caafe7f2e35f7029d93e7811f.zip
handle edge cases on flatpaks and ordering
Diffstat (limited to 'src/components/Content.tsx')
-rw-r--r--src/components/Content.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Content.tsx b/src/components/Content.tsx
index dc8c54f..422eec8 100644
--- a/src/components/Content.tsx
+++ b/src/components/Content.tsx
@@ -86,7 +86,7 @@ export function Content() {
const hasNowPlaying = Boolean(nowPlayingTarget);
const runningWorkload = nowPlayingTarget
? nowPlayingTarget.kind === "flatpak"
- ? `flatpak:${nowPlayingTarget.app.app_id}`
+ ? `flatpak:${nowPlayingTarget.app.app_id}:${nowPlayingTarget.launcher?.appid ?? ""}`
: `steam:${nowPlayingTarget.game.appid}`
: null;