muuuuse 3.3.3 → 3.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/runtime.js +4 -1
package/package.json
CHANGED
package/src/runtime.js
CHANGED
|
@@ -1295,7 +1295,10 @@ class ArmedSeat {
|
|
|
1295
1295
|
this.liveState.lastMessageId = null;
|
|
1296
1296
|
const sessionStartedAtMs = readSessionFileStartedAtMs(detectedAgent.type, resolvedSessionFile);
|
|
1297
1297
|
if (Number.isFinite(sessionStartedAtMs)) {
|
|
1298
|
-
this.liveState.captureSinceMs = Math.
|
|
1298
|
+
this.liveState.captureSinceMs = Math.max(
|
|
1299
|
+
this.startedAtMs,
|
|
1300
|
+
Math.min(this.liveState.captureSinceMs, sessionStartedAtMs)
|
|
1301
|
+
);
|
|
1299
1302
|
}
|
|
1300
1303
|
}
|
|
1301
1304
|
|