From 786d1caaab9fe6e587b0cc5b6dbd2bb7006ef87f Mon Sep 17 00:00:00 2001 From: Riley Testut Date: Fri, 4 Jun 2021 13:59:21 -0700 Subject: [PATCH] [AltServer] Updates AltStore download URLs to use CDN --- AltServer/AppDelegate.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AltServer/AppDelegate.swift b/AltServer/AppDelegate.swift index 8895159ef..71c08d218 100644 --- a/AltServer/AppDelegate.swift +++ b/AltServer/AppDelegate.swift @@ -16,9 +16,9 @@ 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")! +private let altstoreAppURL = URL(string: "https://cdn.altstore.io/file/altstore/altstore-beta.ipa")! #else -private let altstoreAppURL = URL(string: "https://f000.backblazeb2.com/file/altstore/altstore.ipa")! +private let altstoreAppURL = URL(string: "https://cdn.altstore.io/file/altstore/altstore.ipa")! #endif extension ALTDevice: MenuDisplayable {}