Skip to content

Commit

Permalink
Merge pull request #321 from hydralauncher/fix/playtime-not-showing-o…
Browse files Browse the repository at this point in the history
…n-ui

fix: playtime not showing on UI
  • Loading branch information
Hydra authored May 12, 2024
2 parents 042dc77 + 62cff6c commit 53f0de9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/src/pages/game-details/hero/hero-panel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export function HeroPanel({
);
}

if (game && GameStatusHelper.isReady(game?.status ?? null)) {
if (game && GameStatusHelper.isReady(game?.status ?? GameStatus.Finished)) {
return <HeroPanelPlaytime game={game} isGamePlaying={isGamePlaying} />;
}

Expand Down

0 comments on commit 53f0de9

Please sign in to comment.