mirror of
https://github.com/webadderallorg/Recordly.git
synced 2026-09-26 15:55:35 +00:00
fix(recording): keep cursor boundary timestamps monotonic
This commit is contained in:
@@ -198,7 +198,7 @@ function normalizeRendererTimestampMs(value: unknown) {
|
||||
return nowMs;
|
||||
}
|
||||
|
||||
return Math.min(Math.max(0, Math.round(value)), nowMs + 1000);
|
||||
return Math.min(Math.max(0, Math.round(value)), nowMs);
|
||||
}
|
||||
|
||||
function pickMicrophoneChunkEvents(value: unknown): MicrophoneChunkTimingEvent[] | null {
|
||||
|
||||
Reference in New Issue
Block a user