From 512d459aa92825d7ab57fbf2d9a90f1162bdebc1 Mon Sep 17 00:00:00 2001 From: nick-delirium Date: Wed, 4 Jun 2025 10:37:44 +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 9a103665e..9abcf1234 100644 --- a/frontend/app/components/Session/Player/ReplayPlayer/AudioPlayer.tsx +++ b/frontend/app/components/Session/Player/ReplayPlayer/AudioPlayer.tsx @@ -42,7 +42,7 @@ function DropdownAudioPlayer({ return { url: data.url, timestamp: data.timestamp, - start: startTs, + start: Math.max(0, startTs), }; }), [audioEvents.length, sessionStart],