Skip to content

Commit

Permalink
Bugfix FXIOS-11312 ⁃ [Felt privacy-Unified panel] - Incorrect display…
Browse files Browse the repository at this point in the history
… of the secure connection section and certificate after a specific scenario (on certain websites) (#24632)

FXIOS-11312 #24602 ⁃ [Felt privacy-Unified panel][Intermittent] - Incorrect display of the secure connection section and certificate after a specific scenario (on certain websites)
  • Loading branch information
dicarobinho authored Feb 7, 2025
1 parent 115cd38 commit 3cf9252
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class CertificatesHandler {
// Define a function to get the certificates for a given URL
func getCertificates(for url: URL, completion: @escaping ([Certificate]?) -> Void) {
// Create a URL session with a custom delegate
let session = URLSession(configuration: .default,
let session = URLSession(configuration: .ephemeral,
delegate: CertificateDelegate(completion: completion),
delegateQueue: nil)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class TrackingProtectionDetailsViewController: UIViewController, Themeable {
private let baseView: UIStackView = .build { stackView in
stackView.axis = .vertical
stackView.accessibilityIdentifier = AccessibilityIdentifiers.EnhancedTrackingProtection.DetailsScreen.containerView
stackView.distribution = .fillProportionally
stackView.distribution = .fill
}

private let headerView: NavigationHeaderView = .build { header in
Expand Down

0 comments on commit 3cf9252

Please sign in to comment.