From 39805bc103d5e7d5d09c034a770f7dd8d2407392 Mon Sep 17 00:00:00 2001 From: Joseph Mattello Date: Wed, 16 Nov 2022 17:04:18 -0500 Subject: [PATCH] Anisette URL fix missing abort Signed-off-by: Joseph Mattello --- AltStore/LaunchViewController.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/AltStore/LaunchViewController.swift b/AltStore/LaunchViewController.swift index 1dab2c20..78667f74 100644 --- a/AltStore/LaunchViewController.swift +++ b/AltStore/LaunchViewController.swift @@ -31,6 +31,7 @@ public struct AnisetteManager { static var defaultURL: String { guard let url = Bundle.main.object(forInfoDictionaryKey: "ALTAnisetteURL") as? String else { assertionFailure("Info.plist has invalid `ALTAnisetteURL`") + abort() } return url }