diff --git a/AltStore/LaunchViewController.swift b/AltStore/LaunchViewController.swift index 5a09fb4a..3554e3d3 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: { _ in 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)) } } }