Skip to content

Commit

Permalink
Adds SentryReplayOptions parameter (see getsentry/sentry-java#3749)
Browse files Browse the repository at this point in the history
  • Loading branch information
antonis committed Oct 10, 2024
1 parent d39996a commit 5dd7789
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ public void initNativeSdk(final ReadableMap rnOptions, Promise promise) {
}

private SentryReplayOptions getReplayOptions(@NotNull ReadableMap rnOptions) {
@NotNull final SentryReplayOptions androidReplayOptions = new SentryReplayOptions();
@NotNull final SentryReplayOptions androidReplayOptions = new SentryReplayOptions(false);

@Nullable final ReadableMap rnExperimentsOptions = rnOptions.getMap("_experiments");
if (rnExperimentsOptions == null) {
Expand Down

0 comments on commit 5dd7789

Please sign in to comment.