From 204a8176e0dfb20a2f3c7e9cd7272bd2b731d6db Mon Sep 17 00:00:00 2001 From: Angel Demirev Date: Sun, 2 Feb 2025 15:16:21 -0800 Subject: [PATCH] Change redactAllText and redactAllImages to maskAllText and maskAllImages This is based on the change in https://github.com/getsentry/sentry-java/pull/3741 redactAllText and redactAllImages are no longer valid in XCode, and have been replaced with maskAllText and maskAllImages --- docs/platforms/apple/guides/ios/session-replay/index.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/platforms/apple/guides/ios/session-replay/index.mdx b/docs/platforms/apple/guides/ios/session-replay/index.mdx index 4abad20e315e6..13aa792893a07 100644 --- a/docs/platforms/apple/guides/ios/session-replay/index.mdx +++ b/docs/platforms/apple/guides/ios/session-replay/index.mdx @@ -76,8 +76,8 @@ If you encounter any data not being redacted with the default settings, please l To disable redaction altogether (not to be used on applications with sensitive data): ```swift -options.sessionReplay.redactAllText = false -options.sessionReplay.redactAllImages = false +options.sessionReplay.maskAllText = false +options.sessionReplay.maskAllImages = false ``` ## Error Linking