Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@

- Fixes warnings about minimum OS version being lower than Xcode supported version (#5591)
- Fix rendering method for fast view rendering (#6360)
- Fixes a crash when setting configureUserFeedback to nil (#6642)
- Fix issue where the thread that generated an event could be missing when more than 100 threads are running (#6377)
- Fix wrong Frame Delay when becoming active, which lead to false reported app hangs when the app moves to the foreground after being in the background (#6381)
- Session Replay masking improvements (#6292)
Expand Down
4 changes: 3 additions & 1 deletion Sources/Sentry/SentryOptions.m
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,9 @@ - (void)setConfigureUserFeedback:(SentryUserFeedbackConfigurationBlock)configure
SentryUserFeedbackConfiguration *userFeedbackConfiguration =
[[SentryUserFeedbackConfiguration alloc] init];
self.userFeedbackConfiguration = userFeedbackConfiguration;
configureUserFeedback(userFeedbackConfiguration);
if (configureUserFeedback) {
configureUserFeedback(userFeedbackConfiguration);
}
}
#endif // TARGET_OS_IOS && SENTRY_HAS_UIKIT

Expand Down
Loading