From 0b17b447bc57677bd1b5d3dead90580af6b55186 Mon Sep 17 00:00:00 2001 From: Stu Leak Date: Wed, 7 Jan 2026 02:28:36 -0500 Subject: [PATCH] Fix unified player load err scoping --- internal/player/unified_ffmpeg_player.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/internal/player/unified_ffmpeg_player.go b/internal/player/unified_ffmpeg_player.go index d5d8450..9cb39c4 100644 --- a/internal/player/unified_ffmpeg_player.go +++ b/internal/player/unified_ffmpeg_player.go @@ -185,8 +185,7 @@ func (p *UnifiedPlayer) Load(path string, offset time.Duration) error { } // Start FFmpeg process for unified A/V output - err = p.startVideoProcess() - if err != nil { + if err := p.startVideoProcess(); err != nil { return err }