From 314e1a5efbb0e28ba860dea84b8aeeb99c3005f6 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Sat, 11 Apr 2026 23:08:19 +0900 Subject: [PATCH] fix(telemetry): enable GeoIP resolution for PostHog events posthog-node SDK defaults disableGeoip to true, preventing country/city data from being populated despite $ip being sent. Explicitly set disableGeoip: false to enable geographic analytics. --- src/shared/posthog.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/shared/posthog.ts b/src/shared/posthog.ts index b56025d35..6fd721e71 100644 --- a/src/shared/posthog.ts +++ b/src/shared/posthog.ts @@ -77,6 +77,7 @@ function createPostHogClient( const configuredClient = new PostHog(getPostHogApiKey(), { ...options, host: getPostHogHost(), + disableGeoip: false, }) const sharedProperties = getSharedProperties(source)