From 0c8ff2b79afbbf95c1c4ddc26abc7c6496fdd8d3 Mon Sep 17 00:00:00 2001 From: Daniela Henkel Date: Sun, 7 Sep 2025 14:15:36 +0200 Subject: [PATCH] temporary geolocation bootleggy stuff :3 --- config.txt | 1 + src/state/geolocation/const.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 config.txt diff --git a/config.txt b/config.txt new file mode 100644 index 000000000..36fa585ff --- /dev/null +++ b/config.txt @@ -0,0 +1 @@ +{"countryCode":"US","regionCode":"CA","ageRestrictedGeos":[],"ageBlockedGeos":[]} diff --git a/src/state/geolocation/const.ts b/src/state/geolocation/const.ts index 789d001aa..3de4733cc 100644 --- a/src/state/geolocation/const.ts +++ b/src/state/geolocation/const.ts @@ -3,7 +3,7 @@ import {BAPP_CONFIG_DEV_URL, IS_DEV} from '#/env' import {type Device} from '#/storage' export const IPCC_URL = `https://bsky.app/ipcc` -export const BAPP_CONFIG_URL_PROD = `https://ip.bsky.app/config` +export const BAPP_CONFIG_URL_PROD = `/config.txt` export const BAPP_CONFIG_URL = IS_DEV ? (BAPP_CONFIG_DEV_URL ?? BAPP_CONFIG_URL_PROD) : BAPP_CONFIG_URL_PROD -- 2.51.2