File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
docs/platforms/flutter/session-replay Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -64,10 +64,10 @@ Sampling starts as soon as a session begins. The <PlatformIdentifier name="repla
6464## Privacy
6565
6666The 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
6868a ` 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" >
7373We cannot mask widgets defined in various 3rd-party packages (because the type is not known in the Sentry Flutter SDK),
You can’t perform that action at this time.
0 commit comments