mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-12 04:15:30 +00:00
fix(web): Respect disable telemetry flag for web server side events (#657)
* fix * changelog
This commit is contained in:
parent
bcca1d6d7d
commit
483b433aab
2 changed files with 7 additions and 0 deletions
|
|
@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Fixed issue where the disable telemetry flag was not being respected for web server telemetry. [#657](https://github.com/sourcebot-dev/sourcebot/pull/657)
|
||||||
|
|
||||||
## [4.10.1] - 2025-12-03
|
## [4.10.1] - 2025-12-03
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
||||||
|
|
@ -48,6 +48,10 @@ const getPostHogCookie = (cookieStore: Pick<RequestCookies, 'get'>): PostHogCook
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function captureEvent<E extends PosthogEvent>(event: E, properties: PosthogEventMap[E]) {
|
export async function captureEvent<E extends PosthogEvent>(event: E, properties: PosthogEventMap[E]) {
|
||||||
|
if (env.SOURCEBOT_TELEMETRY_DISABLED === 'true') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
const cookieStore = await cookies();
|
const cookieStore = await cookies();
|
||||||
const cookie = getPostHogCookie(cookieStore);
|
const cookie = getPostHogCookie(cookieStore);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue