Skip to content

Commit 8f7b00b

Browse files
committed
minor arrangement changes
1 parent c212773 commit 8f7b00b

File tree

1 file changed

+11
-7
lines changed
  • platform-includes/replay/privacy-configuration

1 file changed

+11
-7
lines changed

platform-includes/replay/privacy-configuration/flutter.mdx

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
## Privacy
22

3+
<Alert level="warning">
4+
Setting these parameter will affect `masking` for{" "}
5+
<PlatformLink to="/enriching-events/screenshots/">`Screenshots`</PlatformLink>{" "}
6+
and <PlatformLink to="/session-replay/">`Session Replay`</PlatformLink>.
7+
</Alert>
38
<Note>
4-
5-
Setting these parameter will affect `masking` for `screenshot` and `session replay`.
6-
9+
By default, `masking` is disabled for{" "}
10+
<PlatformLink to="/enriching-events/screenshots/">`Screenshots`</PlatformLink>{" "}
11+
and enabled for{" "}
12+
<PlatformLink to="/session-replay/">`Session Replay`</PlatformLink>
713
</Note>
814

9-
###### By default, `masking` is disabled for `screenshot` and enabled for `session replay`.
10-
11-
By default, for `session replay` the SDK is recording and aggressively redacting (masking) all `Text`, `EditableText`, and `Image` widgets.
15+
By default, the SDK is recording and aggressively redacting (masking) all `Text`, `EditableText`, and `Image` widgets for <PlatformLink to="/session-replay/">`Session Replay`</PlatformLink>.
1216
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
1317
a `widgetInstance` should be masked by checking `if (widgetInstance is Image)` instead of `if (widgetInstance.runtimeType == 'Image')`).
1418
This means we can ensure masking works regardless of obfuscation in release builds and also works for subclasses.
@@ -61,7 +65,7 @@ If you find that data isn't being masked with the default settings, please let u
6165

6266
</Note>
6367

64-
To disable masking for `screenshot` and `session replay` (not to be used on applications with sensitive data):
68+
To disable masking for <PlatformLink to="/enriching-events/screenshots/">`Screenshots`</PlatformLink> and <PlatformLink to="/session-replay/">`Session Replay`</PlatformLink> (not to be used on applications with sensitive data):
6569

6670
```dart
6771
options.experimental.privacy.maskAllText = false;

0 commit comments

Comments
 (0)