From d0b2b446fda41b159388243e229151be95efad92 Mon Sep 17 00:00:00 2001 From: SukkaW Date: Sun, 19 Apr 2026 02:34:16 +0800 Subject: [PATCH] Fix: exclude `apps.apple.com` from Apple CDN Hosts --- Build/build-apple-cdn.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/Build/build-apple-cdn.ts b/Build/build-apple-cdn.ts index e1081170..f52ef071 100644 --- a/Build/build-apple-cdn.ts +++ b/Build/build-apple-cdn.ts @@ -20,5 +20,6 @@ export const buildAppleCdn = task(require.main === module, __filename)(async (sp ' - https://github.com/felixonmars/dnsmasq-china-list' ) .bulkAddDomainSuffix(res) + .whitelistDomain('apps.apple.com') .write(); });