diff --git a/CHANGELOG.md b/CHANGELOG.md index e26eddc764..6da7e439b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ ## Unreleased +### Fixes + +- Fixes Replay Custom Masking issue on Android ([#4957](https://github.com/getsentry/sentry-react-native/pull/4957)) + ### Dependencies - Bump Cocoa SDK from v8.52.1 to v8.53.1 ([#4950](https://github.com/getsentry/sentry-react-native/pull/4950)) diff --git a/packages/core/android/src/newarch/java/io/sentry/react/replay/RNSentryReplayUnmaskManager.java b/packages/core/android/src/newarch/java/io/sentry/react/replay/RNSentryReplayUnmaskManager.java index da0648123d..97b8358e5a 100644 --- a/packages/core/android/src/newarch/java/io/sentry/react/replay/RNSentryReplayUnmaskManager.java +++ b/packages/core/android/src/newarch/java/io/sentry/react/replay/RNSentryReplayUnmaskManager.java @@ -8,7 +8,7 @@ import com.facebook.react.viewmanagers.RNSentryReplayUnmaskManagerDelegate; import com.facebook.react.viewmanagers.RNSentryReplayUnmaskManagerInterface; -@ReactModule(name = RNSentryReplayMaskManagerImpl.REACT_CLASS) +@ReactModule(name = RNSentryReplayUnmaskManagerImpl.REACT_CLASS) public class RNSentryReplayUnmaskManager extends ViewGroupManager implements RNSentryReplayUnmaskManagerInterface { private final RNSentryReplayUnmaskManagerDelegate< @@ -23,7 +23,7 @@ public ViewManagerDelegate getDelegate() { @NonNull @Override public String getName() { - return RNSentryReplayMaskManagerImpl.REACT_CLASS; + return RNSentryReplayUnmaskManagerImpl.REACT_CLASS; } @NonNull