diff --git a/AltStore/View Components/AsyncFallibleButton.swift b/AltStore/View Components/AsyncFallibleButton.swift index 9d5c9d1c..24a91402 100644 --- a/AltStore/View Components/AsyncFallibleButton.swift +++ b/AltStore/View Components/AsyncFallibleButton.swift @@ -88,7 +88,7 @@ struct AsyncFallibleButton: View { } catch { DispatchQueue.main.async { state = .error - errorAlertMessage = error.localizedDescription + errorAlertMessage = (error as? LocalizedError)?.failureReason ?? error.localizedDescription showErrorAlert = true } }