Skip to content

Commit

Permalink
fix: set default to false
Browse files Browse the repository at this point in the history
  • Loading branch information
ioannisj committed Dec 2, 2024
1 parent f29f142 commit c041827
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PostHog/Replay/PostHogSessionReplayConfig.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@

/// Enable masking of images that likely originated from user's photo library
/// Experimental support (UIKit only)
/// Default: true
/// Default: false
///
/// - Note: Deprecated
@available(*, deprecated, message: "This property has no effect and will be removed in the next major release. To learn how to manually mask user photos please see our Privacy controls documentation: https://posthog.com/docs/session-replay/privacy?tab=iOS")
@objc public var maskPhotoLibraryImages: Bool = true
@objc public var maskPhotoLibraryImages: Bool = false

/// Enable capturing network telemetry
/// Experimental support
Expand Down

0 comments on commit c041827

Please sign in to comment.