From 3c9ef728e1b1d234e43de5368b3573b564066de2 Mon Sep 17 00:00:00 2001 From: Riley Testut Date: Tue, 22 Feb 2022 12:35:24 -0800 Subject: [PATCH] [AltServer] Fixes staging AltPlugin update URL --- AltServer/Plugin/PluginManager.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AltServer/Plugin/PluginManager.swift b/AltServer/Plugin/PluginManager.swift index b35b21dc..bb0d99e4 100644 --- a/AltServer/Plugin/PluginManager.swift +++ b/AltServer/Plugin/PluginManager.swift @@ -40,7 +40,7 @@ enum PluginError: LocalizedError private extension URL { #if STAGING - static let altPluginUpdateURL = URL(string: "https://f000.backblazeb2.com/file/altstore-staging/altserver/altplugin/altplugin2.json")! + static let altPluginUpdateURL = URL(string: "https://f000.backblazeb2.com/file/altstore-staging/altserver/altplugin/altplugin.json")! #else static let altPluginUpdateURL = URL(string: "https://cdn.altstore.io/file/altstore/altserver/altplugin/altplugin.json")! #endif