Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add `bundleDate`, `bundleIdentifier` to `StatsigUser` (#4199)

* record event for fetched ota update

* Revert "record event for fetched ota update"

This reverts commit 4b49efe036c0c9605eabf1d5715586d093d60e9e.

* add `bundleDate` to `StatsigUser`

* include `bundleIdentifier` too

* move to `custom`

authored by

Hailey and committed by
GitHub
af20229b 70f190d4

+5 -1
+5 -1
src/lib/statsig/statsig.tsx
··· 7 7 import {logger} from '#/logger' 8 8 import {isWeb} from '#/platform/detection' 9 9 import * as persisted from '#/state/persisted' 10 - import {IS_TESTFLIGHT} from 'lib/app-info' 10 + import {BUNDLE_DATE, BUNDLE_IDENTIFIER, IS_TESTFLIGHT} from 'lib/app-info' 11 11 import {useSession} from '../../state/session' 12 12 import {timeout} from '../async/timeout' 13 13 import {useNonReactiveCallback} from '../hooks/useNonReactiveCallback' ··· 22 22 // This is the place where we can add our own stuff. 23 23 // Fields here have to be non-optional to be visible in the UI. 24 24 platform: 'ios' | 'android' | 'web' 25 + bundleIdentifier: string 26 + bundleDate: number 25 27 refSrc: string 26 28 refUrl: string 27 29 appLanguage: string ··· 180 182 refSrc, 181 183 refUrl, 182 184 platform: Platform.OS as 'ios' | 'android' | 'web', 185 + bundleIdentifier: BUNDLE_IDENTIFIER, 186 + bundleDate: BUNDLE_DATE, 183 187 appLanguage: languagePrefs.appLanguage, 184 188 contentLanguages: languagePrefs.contentLanguages, 185 189 },