From 9570b797fd0c19a0534b049faaa73a36f9cea5df Mon Sep 17 00:00:00 2001 From: Riley Testut Date: Tue, 10 May 2022 15:02:58 -0700 Subject: [PATCH] [AltServer] Fixes indefinitely caching STAGING Sparkle URL --- AltServer/AppDelegate.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/AltServer/AppDelegate.swift b/AltServer/AppDelegate.swift index a4f734c3..cde13ae3 100644 --- a/AltServer/AppDelegate.swift +++ b/AltServer/AppDelegate.swift @@ -67,6 +67,8 @@ class AppDelegate: NSObject, NSApplicationDelegate { #if STAGING SUUpdater.shared().feedURL = URL(string: "https://altstore.io/altserver/sparkle-macos-staging.xml") + #else + SUUpdater.shared().feedURL = URL(string: "https://altstore.io/altserver/sparkle-macos.xml") #endif let item = NSStatusBar.system.statusItem(withLength: -1)