From 88899231112bce2830d33792e068883dc4fa2f01 Mon Sep 17 00:00:00 2001 From: Riley Testut Date: Mon, 1 Feb 2021 13:49:27 -0600 Subject: [PATCH] [AltServer] Changes AltStore download URL for BETA builds --- AltServer/AppDelegate.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/AltServer/AppDelegate.swift b/AltServer/AppDelegate.swift index e4ec7a67..a171fdf1 100644 --- a/AltServer/AppDelegate.swift +++ b/AltServer/AppDelegate.swift @@ -15,6 +15,8 @@ import LaunchAtLogin #if STAGING private let altstoreAppURL = URL(string: "https://f000.backblazeb2.com/file/altstore-staging/altstore.ipa")! +#elseif BETA +private let altstoreAppURL = URL(string: "https://f000.backblazeb2.com/file/altstore/altstore-beta.ipa")! #else private let altstoreAppURL = URL(string: "https://f000.backblazeb2.com/file/altstore/altstore.ipa")! #endif