Bluesky app fork with some witchin' additions 💫

Read from mergedGeolocation when setting mod authorities (#9509)

* Read from mergedGeolocation when setting mod authorities

* Add deprecation notice

authored by Eric Bailey and committed by GitHub 4407e59e a0c4a6b3

Changed files
+3 -1
src
+1 -1
src/state/session/additional-moderation-authorities.ts
··· 70 } 71 72 export function configureAdditionalModerationAuthorities() { 73 - const geolocation = device.get(['geolocation']) 74 // default to all 75 let additionalLabelers: string[] = MODERATION_AUTHORITIES_DIDS 76
··· 70 } 71 72 export function configureAdditionalModerationAuthorities() { 73 + const geolocation = device.get(['mergedGeolocation']) 74 // default to all 75 let additionalLabelers: string[] = MODERATION_AUTHORITIES_DIDS 76
+2
src/storage/schema.ts
··· 13 * Geolocation config, fetched from the IP service. This previously did 14 * double duty as the "status" for geolocation state, but that has since 15 * moved here to the client. 16 */ 17 geolocation?: { 18 countryCode: string | undefined
··· 13 * Geolocation config, fetched from the IP service. This previously did 14 * double duty as the "status" for geolocation state, but that has since 15 * moved here to the client. 16 + * 17 + * @deprecated use `mergedGeolocation` instead 18 */ 19 geolocation?: { 20 countryCode: string | undefined