@appsurify-testmap/rrweb-replay 2.1.3-alpha.2 → 2.1.3-alpha.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.
@@ -10251,7 +10251,7 @@ function createPlayerService(context, { getCastFn, applyEventsSynchronously, emi
10251
10251
  if (lastPlayedTimestamp && lastPlayedTimestamp < baselineTime && (event.timestamp <= lastPlayedTimestamp || event === lastPlayedEvent)) {
10252
10252
  continue;
10253
10253
  }
10254
- if (event.timestamp < baselineTime) {
10254
+ if (event.timestamp <= baselineTime) {
10255
10255
  syncEvents.push(event);
10256
10256
  } else {
10257
10257
  const castFn = getCastFn(event, false);