From c59114188c4d7c874628f6384f970d4f4364adea Mon Sep 17 00:00:00 2001 From: nick-delirium Date: Wed, 4 Jun 2025 10:57:08 +0200 Subject: [PATCH] ui: fix audioplayer start point --- .../app/components/Session/Player/ReplayPlayer/AudioPlayer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/components/Session/Player/ReplayPlayer/AudioPlayer.tsx b/frontend/app/components/Session/Player/ReplayPlayer/AudioPlayer.tsx index 00c738385..b8637b756 100644 --- a/frontend/app/components/Session/Player/ReplayPlayer/AudioPlayer.tsx +++ b/frontend/app/components/Session/Player/ReplayPlayer/AudioPlayer.tsx @@ -41,7 +41,7 @@ function DropdownAudioPlayer({ return { url: data.url, timestamp: data.timestamp, - start: startTs, + start: Math.max(0, startTs), }; }), [audioEvents.length, sessionStart]