From a105c7f9b42d1cf2b9824cba690e5f356bce073a Mon Sep 17 00:00:00 2001 From: Riley Testut Date: Wed, 23 Nov 2022 19:20:33 -0600 Subject: [PATCH] =?UTF-8?q?Revises=20=E2=80=9Ccheck=20for=20updates?= =?UTF-8?q?=E2=80=9D=20error=20title?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AltStore/My Apps/MyAppsViewController.swift | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/AltStore/My Apps/MyAppsViewController.swift b/AltStore/My Apps/MyAppsViewController.swift index 3bc6e239..162909a9 100644 --- a/AltStore/My Apps/MyAppsViewController.swift +++ b/AltStore/My Apps/MyAppsViewController.swift @@ -1485,7 +1485,6 @@ private extension MyAppsViewController let (_, context) = try result.get() try context.save() - } catch let error as AppManager.FetchSourcesError { @@ -1496,7 +1495,7 @@ private extension MyAppsViewController catch let error as NSError { DispatchQueue.main.async { - let toastView = ToastView(error: error.withLocalizedTitle(NSLocalizedString("Failed to Check for Updates", comment: ""))) + let toastView = ToastView(error: error.withLocalizedTitle(NSLocalizedString("Unable to Check for Updates", comment: ""))) toastView.addTarget(nil, action: #selector(TabBarController.presentSources), for: .touchUpInside) toastView.show(in: self) }