diff --git a/functions/.well-known/assetlinks.json.js b/functions/.well-known/assetlinks.json.js index 8288eb6..9eb3782 100644 --- a/functions/.well-known/assetlinks.json.js +++ b/functions/.well-known/assetlinks.json.js @@ -1,5 +1,5 @@ export const onRequestGet = async () => { - const url = "https://raw.githubusercontent.com/OWNER/REPO/BRANCH/.well-known/assetlinks.json"; + const url = "https://raw.githubusercontent.com/multipleof4/sune/master/public/.well-known/assetlinks.json"; const r = await fetch(url, { cf: { cacheTtl: 0, cacheEverything: false } }); if (!r.ok) return new Response("not found", { status: 404 }); const body = await r.text();