From 44edbddbd812c55f341549fc57b81f4dc8bdcae1 Mon Sep 17 00:00:00 2001 From: Spidy123222 <64176728+Spidy123222@users.noreply.github.com> Date: Wed, 15 Feb 2023 21:14:51 -0800 Subject: [PATCH 1/2] Replace placeholder video with instructions. (#266) --- AltStore/LaunchViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AltStore/LaunchViewController.swift b/AltStore/LaunchViewController.swift index 25692f06..0aaf588e 100644 --- a/AltStore/LaunchViewController.swift +++ b/AltStore/LaunchViewController.swift @@ -79,7 +79,7 @@ final class LaunchViewController: RSTLaunchViewController, UIDocumentPickerDeleg } else { // Show an alert explaining the pairing file // Create new Alert - let dialogMessage = UIAlertController(title: "Pairing File", message: "Select the pairing file for your device. For more information, go to https://youtu.be/dQw4w9WgXcQ", preferredStyle: .alert) + let dialogMessage = UIAlertController(title: "Pairing File", message: "Select the pairing file for your device. For more information, go to https://wiki.sidestore.io/guides/install#pairing-process", preferredStyle: .alert) // Create OK button with action handler let ok = UIAlertAction(title: "OK", style: .default, handler: { (action) -> Void in From a01aa299d8d2aff04a3477b0dc301666b3326741 Mon Sep 17 00:00:00 2001 From: naturecodevoid <44983869+naturecodevoid@users.noreply.github.com> Date: Sat, 18 Feb 2023 20:26:32 -0800 Subject: [PATCH 2/2] SourcesViewController: Fix 1 trusted source causing an error making all trusted sources fail to load --- AltStore/Sources/SourcesViewController.swift | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/AltStore/Sources/SourcesViewController.swift b/AltStore/Sources/SourcesViewController.swift index 2b15c240..7a42e446 100644 --- a/AltStore/Sources/SourcesViewController.swift +++ b/AltStore/Sources/SourcesViewController.swift @@ -381,13 +381,12 @@ private extension SourcesViewController dispatchGroup.notify(queue: .main) { if let error = fetchError { - finish(.failure(error)) - } - else - { - let sources = featuredSourceURLs.compactMap { sourcesByURL[$0] } - finish(.success(sources)) + print(error) + // 1 error doesn't mean all trusted sources failed to load! Riley, why did you do this??????? +// finish(.failure(error)) } + let sources = featuredSourceURLs.compactMap { sourcesByURL[$0] } + finish(.success(sources)) } } }