Skip to content

Commit 9cbea0a

Browse files
authored
fix(replay): Fixes typo in unmask manager (#4957)
* fix(replay): Fixes typo in unmask manager * Add changelog
1 parent bd87539 commit 9cbea0a

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
99
## Unreleased
1010

11+
### Fixes
12+
13+
- Fixes Replay Custom Masking issue on Android ([#4957](https://github.com/getsentry/sentry-react-native/pull/4957))
14+
1115
### Dependencies
1216

1317
- Bump Cocoa SDK from v8.52.1 to v8.53.1 ([#4950](https://github.com/getsentry/sentry-react-native/pull/4950))

packages/core/android/src/newarch/java/io/sentry/react/replay/RNSentryReplayUnmaskManager.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import com.facebook.react.viewmanagers.RNSentryReplayUnmaskManagerDelegate;
99
import com.facebook.react.viewmanagers.RNSentryReplayUnmaskManagerInterface;
1010

11-
@ReactModule(name = RNSentryReplayMaskManagerImpl.REACT_CLASS)
11+
@ReactModule(name = RNSentryReplayUnmaskManagerImpl.REACT_CLASS)
1212
public class RNSentryReplayUnmaskManager extends ViewGroupManager<RNSentryReplayUnmask>
1313
implements RNSentryReplayUnmaskManagerInterface<RNSentryReplayUnmask> {
1414
private final RNSentryReplayUnmaskManagerDelegate<
@@ -23,7 +23,7 @@ public ViewManagerDelegate<RNSentryReplayUnmask> getDelegate() {
2323
@NonNull
2424
@Override
2525
public String getName() {
26-
return RNSentryReplayMaskManagerImpl.REACT_CLASS;
26+
return RNSentryReplayUnmaskManagerImpl.REACT_CLASS;
2727
}
2828

2929
@NonNull

0 commit comments

Comments
 (0)