From 93de529946540014b8f6afd7f465041233895f84 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Sat, 23 Aug 2025 14:13:01 -0500 Subject: [PATCH] Swap URL --- src/state/geolocation.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/state/geolocation.tsx b/src/state/geolocation.tsx index a69161324f..e78a4b1906 100644 --- a/src/state/geolocation.tsx +++ b/src/state/geolocation.tsx @@ -30,7 +30,7 @@ export const DEFAULT_GEOLOCATION: Device['geolocation'] = { } async function getGeolocation(): Promise { - const res = await fetch(`https://bsky.app/ipcc`) + const res = await fetch(`https://bapp-config.bsky.workers.dev/config`) if (!res.ok) { throw new Error(`geolocation: lookup failed ${res.status}`)