Skip to content

Commit abb2bb5

Browse files
committed
Update privacy and replay docs
1 parent f70c473 commit abb2bb5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Sampling starts as soon as a session begins. The `sessionSampleRate` is then eva
6262

6363
## Redact Session Replay via `masking`
6464

65-
By default, the SDK is recording and aggressively redacting (masking) all `Text`, `EditableText`, and `Image` widgets for <PlatformLink to="/session-replay/">`Session Replay`</PlatformLink>. To modify or disable this behavior, use the `options.experimental.privacy` parameter.
65+
By default, the SDK is recording and aggressively redacting (masking) all `Text`, `EditableText`, and `Image` widgets for <PlatformLink to="/session-replay/">`Session Replay`</PlatformLink>. To modify or disable this behavior, use the `options.privacy` parameter.
6666

6767
<Alert level="warning">
6868
Modifying this parameter will also affect `masking` for

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Examples of widgets that usually should be masked include (but are not limited t
1212

1313
</Alert>
1414

15-
You can tune this and add custom masking rules to fit your needs by adjusting the configuration in `options.experimental.privacy`.
15+
You can tune this and add custom masking rules to fit your needs by adjusting the configuration in `options.privacy`.
1616
For example, you can explicitly mask or unmask widgets by type,
1717
or you can even have a callback to decide whether a specific widget instance should be masked:
1818

@@ -53,6 +53,6 @@ If you find that data isn't being masked with the default settings, please let u
5353
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):
5454

5555
```dart
56-
options.experimental.privacy.maskAllText = false;
57-
options.experimental.privacy.maskAllImages = false;
56+
options.privacy.maskAllText = false;
57+
options.privacy.maskAllImages = false;
5858
```

0 commit comments

Comments
 (0)