From 5b8ca135652f1819ec64284a017cd5f34ba0b522 Mon Sep 17 00:00:00 2001 From: Magesh K <47920326+mahee96@users.noreply.github.com> Date: Fri, 13 Dec 2024 12:29:30 +0530 Subject: [PATCH] [trusted-sources]: restore back trusted source fetch URL to sidestore --- AltStore/Operations/UpdateKnownSourcesOperation.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AltStore/Operations/UpdateKnownSourcesOperation.swift b/AltStore/Operations/UpdateKnownSourcesOperation.swift index 24de3061..95049eb1 100644 --- a/AltStore/Operations/UpdateKnownSourcesOperation.swift +++ b/AltStore/Operations/UpdateKnownSourcesOperation.swift @@ -13,9 +13,9 @@ import AltStoreCore private extension URL { #if STAGING - static let sources = URL(string: "https://f000.backblazeb2.com/file/altstore-staging/altstore/sources.json")! + static let sources = URL(string: "https://raw.githubusercontent.com/SideStore/SideStore/develop/trustedapps.json")! #else - static let sources = URL(string: "https://cdn.altstore.io/file/altstore/altstore/sources.json")! + static let sources = URL(string: "https://raw.githubusercontent.com/SideStore/SideStore/develop/trustedapps.json")! #endif }