From 231361c542e82d75e944c0561990181621c273cd Mon Sep 17 00:00:00 2001 From: Antonis Lilis Date: Tue, 1 Jul 2025 08:25:04 +0300 Subject: [PATCH 1/2] fix(replay): Fixes typo in unmask manager --- .../io/sentry/react/replay/RNSentryReplayUnmaskManager.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 From e073542e2c66d855f8e37f0b4ba39d9a9ad7b10d Mon Sep 17 00:00:00 2001 From: Antonis Lilis Date: Tue, 1 Jul 2025 08:29:39 +0300 Subject: [PATCH 2/2] Add changelog --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) 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))