From 607257140bfd3639b79d4cea9089f9f0c05f25da Mon Sep 17 00:00:00 2001 From: Dmytro Date: Tue, 2 Dec 2025 14:22:10 +0100 Subject: [PATCH 1/2] show `legIntUrl` qr code only for `legIntVendors` --- .../GDPR/SPGDPRVendorDetailsViewController.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ConsentViewController/Classes/Views/tvOS/NativePrivacyManager/GDPR/SPGDPRVendorDetailsViewController.swift b/ConsentViewController/Classes/Views/tvOS/NativePrivacyManager/GDPR/SPGDPRVendorDetailsViewController.swift index cf31191bc..ec00b1dd9 100644 --- a/ConsentViewController/Classes/Views/tvOS/NativePrivacyManager/GDPR/SPGDPRVendorDetailsViewController.swift +++ b/ConsentViewController/Classes/Views/tvOS/NativePrivacyManager/GDPR/SPGDPRVendorDetailsViewController.swift @@ -150,7 +150,9 @@ class SPGDPRVendorDetailsViewController: SPNativeScreenViewController { func loadQrCodes() { loadQRCode(url: vendor?.policyUrl, imageView: PolicyQrCodeImageView, label: PolicyQrCodeLabel) - loadQRCode(url: vendor?.legIntUrl, imageView: LegIntQrCodeImageView, label: LegIntQrCodeLabel) + if displayingLegIntVendors { + loadQRCode(url: vendor?.legIntUrl, imageView: LegIntQrCodeImageView, label: LegIntQrCodeLabel) + } ToScanLabel.isHidden = PolicyQrCodeImageView.image == nil && LegIntQrCodeImageView.image == nil } From b80b09afdb858841fb50f9d05bf16ace3f72f970 Mon Sep 17 00:00:00 2001 From: Dmytro Date: Wed, 10 Dec 2025 14:57:32 +0100 Subject: [PATCH 2/2] Update `release-notes.md` --- release-notes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/release-notes.md b/release-notes.md index fb8a74fbd..10259b8f0 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1,2 +1,2 @@ -* [DIA-6096](https://sourcepoint.atlassian.net/browse/DIA-6096) Fix slider color and text color on `vendorDetails` view [#643](https://github.com/SourcePointUSA/ios-cmp-app/pull/643) -* [DIA-6096](https://sourcepoint.atlassian.net/browse/DIA-6096) Add `LegitimateInterestDiscloureText` text to `LegIntQrCodeLabel` label [#644](https://github.com/SourcePointUSA/ios-cmp-app/pull/644) \ No newline at end of file +* [DIA-6224](https://sourcepoint.atlassian.net/browse/DIA-6224) +TVOS - Fixed Legal Disclosure QR code and text appearing without the LI legal basis existing for this vendor[#645](https://github.com/SourcePointUSA/ios-cmp-app/pull/645) \ No newline at end of file