Skip to content

Commit

Permalink
Merge 302c594 into 132ea11
Browse files Browse the repository at this point in the history
  • Loading branch information
brustolin authored Oct 28, 2024
2 parents 132ea11 + 302c594 commit fa5f2ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Fixes

- Build visionOS project with static Sentry SDK (#4462)
- Capture all touches with session replay (#4477)

### Improvements

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ class SentrySessionReplay: NSObject {

var events = convertBreadcrumbs(breadcrumbs: breadcrumbs, from: video.start, until: video.end)
if let touchTracker = touchTracker {
events.append(contentsOf: touchTracker.replayEvents(from: video.start, until: video.end))
events.append(contentsOf: touchTracker.replayEvents(from: videoSegmentStart ?? video.start, until: video.end))
touchTracker.flushFinishedEvents()
}

Expand Down

0 comments on commit fa5f2ab

Please sign in to comment.