ui: fix audioplayer start point

This commit is contained in:
nick-delirium 2025-06-04 10:57:08 +02:00
parent 6457e383bb
commit c59114188c
No known key found for this signature in database
GPG key ID: 93ABD695DF5FDBA0

View file

@ -41,7 +41,7 @@ function DropdownAudioPlayer({
return { return {
url: data.url, url: data.url,
timestamp: data.timestamp, timestamp: data.timestamp,
start: startTs, start: Math.max(0, startTs),
}; };
}), }),
[audioEvents.length, sessionStart] [audioEvents.length, sessionStart]