fix(recording): keep cursor boundary timestamps monotonic

This commit is contained in:
wiiiii123
2026-05-09 13:10:20 +07:00
parent 4f0361e43a
commit 9515f64efb
+1 -1
View File
@@ -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 {