From 47067aabf09144a3ffed906ff7689760ab34a3aa Mon Sep 17 00:00:00 2001 From: Stu Date: Wed, 10 Dec 2025 04:54:55 -0500 Subject: [PATCH] Keep player session alive in showPlayerView --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index c778653..a4fe1f9 100644 --- a/main.go +++ b/main.go @@ -582,7 +582,7 @@ func (s *appState) showPlayerView() { return } s.stopPreview() - s.stopPlayer() + // Keep playSess alive; only stop compare sessions to avoid killing playback. s.stopCompareSessions() s.active = "player" fmt.Printf("📺 s.source is nil: %v\n", s.source == nil)