ui: fix audioplayer start point

This commit is contained in:
nick-delirium 2025-06-04 10:37:44 +02:00
parent 9e24a3583e
commit 512d459aa9
No known key found for this signature in database
GPG key ID: 93ABD695DF5FDBA0

View file

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