Skip to content

Commit

Permalink
fix(session-replay): Fix all eventsdata query (#27339)
Browse files Browse the repository at this point in the history
  • Loading branch information
timgl authored Jan 7, 2025
1 parent c6a8c40 commit 4825a8b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -685,10 +685,10 @@ export const sessionRecordingDataLogic = kea<sessionRecordingDataLogicType>([
FROM events
WHERE timestamp > ${dayjs(earliestTimestamp - 1000)
.utc()
.toISOString()}
.format('YYYY-MM-DD HH:MM:ss.SSS')}
AND timestamp < ${dayjs(latestTimestamp + 1000)
.utc()
.toISOString()}
.format('YYYY-MM-DD HH:MM:ss.SSS')}
AND event in ${eventNames}
AND uuid in ${eventIds}`,
}
Expand Down

0 comments on commit 4825a8b

Please sign in to comment.