From 3086492cbcc17ad75f8dc37293d7510823145337 Mon Sep 17 00:00:00 2001 From: Riley Testut Date: Wed, 26 Oct 2022 18:14:25 -0500 Subject: [PATCH] Fixes Error Log not showing UIAlertController on iOS 13 or earlier --- AltStore/Settings/Error Log/ErrorLogViewController.swift | 1 - 1 file changed, 1 deletion(-) diff --git a/AltStore/Settings/Error Log/ErrorLogViewController.swift b/AltStore/Settings/Error Log/ErrorLogViewController.swift index 9cfd022f..b003e64a 100644 --- a/AltStore/Settings/Error Log/ErrorLogViewController.swift +++ b/AltStore/Settings/Error Log/ErrorLogViewController.swift @@ -119,7 +119,6 @@ private extension ErrorLogViewController } else { cell.menuButton.isUserInteractionEnabled = false } - // Include errorDescriptionTextView's text in cell summary. cell.accessibilityLabel = [cell.errorFailureLabel.text, cell.dateLabel.text, cell.errorCodeLabel.text, cell.errorDescriptionTextView.text].compactMap { $0 }.joined(separator: ". ")