Bluesky app fork with some witchin' additions 💫

Merge branch 'main' of https://github.com/bluesky-social/social-app

+18 -7
+1 -1
package.json
··· 1 1 { 2 2 "name": "social.daniela.lol", 3 - "version": "1.109.0", 3 + "version": "1.110.0", 4 4 "private": true, 5 5 "engines": { 6 6 "node": ">=18"
+6 -1
src/components/moderation/ContentHider.tsx
··· 85 85 blur.type !== 'label' || 86 86 (blur.type === 'label' && blur.source.type !== 'user') 87 87 ) { 88 - return desc.name 88 + if (desc.isSubjectAccount) { 89 + return _(msg`${desc.name} (Account)`) 90 + } else { 91 + return desc.name 92 + } 89 93 } 90 94 91 95 let hasAdultContentLabel = false ··· 127 131 modui?.blurs, 128 132 blur, 129 133 desc.name, 134 + desc.isSubjectAccount, 130 135 labelDefs, 131 136 i18n.locale, 132 137 globalLabelStrings,
+2
src/lib/moderation/useModerationCauseDescription.ts
··· 28 28 sourceType?: ModerationCauseSource['type'] 29 29 sourceAvi?: string 30 30 sourceDid?: string 31 + isSubjectAccount?: boolean 31 32 } 32 33 33 34 export function useModerationCauseDescription( ··· 162 163 sourceType: cause.source.type, 163 164 sourceAvi: labeler?.creator.avatar, 164 165 sourceDid: cause.label.src, 166 + isSubjectAccount: cause.label.uri.startsWith('did:'), 165 167 } 166 168 } 167 169 // should never happen
+1 -1
src/logger/sentry/setup/index.ts
··· 29 29 * @see https://docs.sentry.io/platforms/react-native/configuration/options/#attach-stacktrace 30 30 */ 31 31 attachStacktrace: false, 32 - // sampleRate: env.IS_INTERNAL ? 1.0 : 0.1, 32 + sampleRate: env.IS_INTERNAL ? 1.0 : 0.1, 33 33 })
+8 -4
src/state/feed-feedback.tsx
··· 341 341 } 342 342 343 343 if (stats.seenCount > 0) { 344 - logger.metric('feed:seen', { 345 - count: stats.seenCount, 346 - feed: feedDescriptor, 347 - }) 344 + logger.metric( 345 + 'feed:seen', 346 + { 347 + count: stats.seenCount, 348 + feed: feedDescriptor, 349 + }, 350 + {statsig: false}, 351 + ) 348 352 stats.seenCount = 0 349 353 } 350 354 }