Skip to content

Commit 75efacd

Browse files
authored
Update index.mdx
1 parent ee47fb4 commit 75efacd

File tree

1 file changed

+3
-3
lines changed
  • docs/platforms/flutter/session-replay

1 file changed

+3
-3
lines changed

docs/platforms/flutter/session-replay/index.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ Sampling starts as soon as a session begins. The <PlatformIdentifier name="repla
6464
## Privacy
6565

6666
The SDK is recording and aggressively redacting (masking) all `Text`, `EditableText`, and `Image` widgets.
67-
Masking in the Sentry Flutter SDK is based on Widget *types*, e.g. `Image`, not just their as strings (i.e. we check whether
67+
Masking in the Sentry Flutter SDK is based on Widget *types*, e.g. `Image`, not the string representation of the type (i.e. we check whether
6868
a `widgetInstance` should be masked by checking `if (widgetInstance is Image)` instead of `if (widgetInstance.runtimeType == 'Image')`).
69-
This means we can ensure masking works regardless of obfuscation in release builds and also works for subtclasses.
70-
However, it also means we can only mask widgets that are part of the Flutter SDK itself.
69+
This means we can ensure masking works regardless of obfuscation in release builds and also works for subclasses.
70+
However, it also means we can only automatically mask widgets that are part of the Flutter SDK itself.
7171

7272
<Alert level="warning">
7373
We cannot mask widgets defined in various 3rd-party packages (because the type is not known in the Sentry Flutter SDK),

0 commit comments

Comments
 (0)