Repository Analysis

bluesky-social/social-app

The Bluesky Social application for Web, iOS, and Android

4.0 Likely human-written View on GitHub

Analysis Overview

This report presents the forensic synthetic code analysis of bluesky-social/social-app, a TypeScript project with 18,119 GitHub stars. SynthScan v2.0 examined 294,985 lines of code across 1996 source files, recording 517 pattern matches distributed across 10 syntactic categories. The overall adjusted score of 4.0 places this repository in the Likely human-written band.

The scanner applied 160+ deterministic lexical heuristics, multi-line block detectors, abstract syntax tree depth profilers, and a cross-file Jaccard similarity matrix to construct a statistically normalised synthetic code estimate. All matches are individually weighted by severity coefficient and contextual multiplier before summation, and the resulting headline score is temporally discounted to account for the repository's development history relative to the commercial emergence of large language model coding tooling (November 2022 onward).

4.0
Adjusted Score
4.0
Raw Score
100%
Time Factor
2026-07-14
Last Push
18.1K
Stars
TypeScript
Language
295.0K
Lines of Code
2.0K
Files
517
Pattern Hits
2026-07-14
Scan Date
0.03
HC Hit Rate

What These Metrics Mean

Adjusted Score
Primary synthetic code indicator. Raw score normalised per 1,000 lines of code and multiplied by the temporal discount factor. This is the definitive comparative metric — use it to rank repositories by AI authorship density.
Raw Score
The unmodified sum of all severity-weighted, context-multiplied pattern match scores before temporal discounting. Reflects the absolute signal strength independent of when the repository was last active.
Time Factor
The temporal discount multiplier (0–100%) applied to the raw score. Repositories last updated before ChatGPT's launch (Nov 2022) receive a 5% factor. Full signal is only assigned to repositories active in the post-adoption era (Jan 2024+).
Pattern Hits
Total count of individual pattern matches across all files and categories. A high hit count with a low score may indicate a very large codebase with isolated AI snippets; a low count with a high score indicates dense, concentrated AI signatures.
HC Hit Rate
High+Critical pattern hits per file, averaged across the repository. This orthogonal signal catches repositories where a few files are densely packed with high-severity AI tells — a strong indicator even when the normalised score appears moderate due to codebase size.
Lines of Code / Files
Total lines and files analysed. The scanner examines 94 file extensions. These denominators are used to normalise the score, enabling fair comparison between repositories of vastly different sizes.

Score History

This chart maps the temporal evolution of the adjusted synthetic code score across successive scan runs. An upward trajectory indicates ongoing incorporation of AI-generated code or expanding LLM-assisted scaffolding; a stable or declining trajectory may reflect active human refactoring, code removal, or the adoption of stricter authorship policies. The dashed secondary line (right axis) independently tracks total raw pattern hit count, which can diverge from the normalised score when codebase size changes significantly between scans.

Severity Breakdown

Classifies detected patterns by their diagnostic confidence and structural impact. CRITICAL patterns (coefficient 10) represent definitive synthetic signatures — hallucinated imports, explicit LLM attribution metadata — virtually never produced by human authors. HIGH (5) indicates strong structural tells such as cross-file repetition or cross-linguistic idioms. MEDIUM (2) covers recognisable conversational padding and AI-specific vocabulary. LOW (1) captures subtle indicators like tautological comments and generic boilerplate that require density to carry independent signal.

CRITICAL 67HIGH 1MEDIUM 2LOW 447

Directory Score Breakdown

This horizontal bar chart decomposes the repository's raw synthetic code score by top-level directory, allowing you to pinpoint precisely which modules or components carry the highest AI authorship density. Directories with disproportionately high scores relative to their size warrant targeted manual review: concentrated AI signatures often trace back to mass-generated configuration layers, auto-ported test suites, LLM-scaffolded boilerplate classes, or entire subsystems authored under heavy copilot assistance. Use this view to prioritise your human code-review effort.

Pattern Findings

The scanner identified 517 distinct pattern matches across 10 syntactic categories. Each entry below represents a discrete location in the source code where the engine recorded a statistically significant AI authorship indicator. Expand any category row to inspect the individual file paths, line numbers, code snippets, and the lexical context (CODE, COMMENT, or STRING) in which each match was detected.

Reading the findings table: The Severity column indicates the diagnostic confidence level (CRITICAL / HIGH / MEDIUM / LOW). The Context column identifies whether the match occurred inside executable code, an inline comment, or a string literal — comment-context matches receive a ×1.5 weight because LLMs systematically over-annotate. The ⚡ bolt icon marks clustered matches: three or more patterns within a 10-line window, each receiving an additional ×1.5 density multiplier as dense clusters constitute far stronger evidence of synthetic authorship than isolated hits.

Hallucination Indicators67 hits · 720 pts
SeverityFileLineSnippetContext
CRITICALdev-env/mock-server.ts26 await server.mocker.users.alice.agent.upsertProfile(() => ({CODE
CRITICALdev-env/mock-server.ts30 await server.mocker.users.bob.agent.upsertProfile(() => ({CODE
CRITICALdev-env/mock-server.ts34 await server.mocker.users.carla.agent.upsertProfile(() => ({CODE
CRITICALdev-env/mock-server.ts63 const res = await server.mocker.users.bob.agent.post({CODE
CRITICALdev-env/mock-server.ts66 await server.mocker.users.carla.agent.post({CODE
CRITICALdev-env/mock-server.ts80 await server.mocker.users.alice.agent.upsertProfile(() => ({CODE
CRITICALdev-env/mock-server.ts84 await server.mocker.users.bob.agent.upsertProfile(() => ({CODE
CRITICALdev-env/mock-server.ts88 await server.mocker.users.carla.agent.upsertProfile(() => ({CODE
CRITICALdev-env/mock-server.ts92 await server.mocker.users.dan.agent.upsertProfile(() => ({CODE
CRITICALdev-env/mock-server.ts384 await server.mocker.users.alice.agent.mute('muted-account.test')CODE
CRITICALdev-env/mock-server.ts426 await server.mocker.users.alice.agent.app.bsky.graph.block.create(CODE
CRITICALdev-env/mock-server.ts449 ].agent.app.bsky.graph.block.create(CODE
CRITICALdev-env/mock-server.ts470 await server.mocker.users.alice.agent.app.bsky.graph.block.create(CODE
CRITICALdev-env/mock-server.ts481 ].agent.app.bsky.graph.block.create(CODE
CRITICALdev-env/test-pds.ts95 // await agent.app.bsky.actor.profile.create(COMMENT
CRITICALdev-env/test-pds.ts103 // await agent.app.bsky.labeler.service.create(COMMENT
CRITICALdev-env/test-pds.ts331 return await agent.app.bsky.feed.generator.create(CODE
CRITICALdev-env/test-pds.ts377 const profile = await agent.app.bsky.actor.profile.get({CODE
CRITICALdev-env/test-pds.ts406 const res = await this.users[user]?.agent.app.bsky.graph.list.create(CODE
CRITICALdev-env/test-pds.ts421 await this.users[owner]?.agent.app.bsky.graph.listitem.create(CODE
CRITICALbskyogcard/src/routes/starter-pack.tsx33 const result = await ctx.appviewAgent.app.bsky.graph.getStarterPack({CODE
CRITICALbskyogcard/src/routes/chat-invite.tsx31 const result = await ctx.chatAgent.chat.bsky.group.getJoinLinkPreviews({CODE
CRITICALbskyogcard/src/routes/avatar-bubbles.tsx33 const result = await ctx.appviewAgent.api.app.bsky.actor.getProfiles({CODE
CRITICALsrc/features/liveNow/index.tsx359 await agent.app.bsky.actor.status.delete({CODE
CRITICALsrc/state/messages/convo/agent.ts723 return this.agent.chat.bsky.convo.getConvo(CODE
CRITICALsrc/state/messages/convo/agent.ts766 return this.agent.chat.bsky.convo.getConvoMembers(CODE
CRITICALsrc/state/messages/convo/agent.ts811 return this.agent.chat.bsky.convo.getMessages(CODE
CRITICALsrc/state/messages/convo/agent.ts1168 const response = await this.agent.chat.bsky.convo.sendMessage(CODE
CRITICALsrc/state/messages/convo/agent.ts1264 const {data} = await this.agent.chat.bsky.convo.sendMessageBatch(CODE
CRITICALsrc/state/messages/convo/agent.ts1307 return this.agent.chat.bsky.convo.deleteMessageForSelf(CODE
CRITICALsrc/state/messages/convo/agent.ts1532 const {data} = await this.agent.chat.bsky.convo.addReaction(CODE
CRITICALsrc/state/messages/convo/agent.ts1597 await this.agent.chat.bsky.convo.removeReaction(CODE
CRITICALsrc/state/messages/events/agent.ts263 return this.agent.chat.bsky.convo.getLog(CODE
CRITICALsrc/state/messages/events/agent.ts362 return this.agent.chat.bsky.convo.getLog(CODE
CRITICALsrc/state/queries/activity-subscriptions.ts46 const response = await agent.app.bsky.notification.declaration.get({CODE
CRITICALsrc/state/queries/activity-subscriptions.ts76 const response = await agent.app.bsky.notification.declaration.put(CODE
CRITICALsrc/state/queries/post-quotes.ts39 const res = await agent.api.app.bsky.feed.getQuotes({CODE
CRITICALsrc/state/queries/service-config.ts23 const {data} = await agent.api.app.bsky.unspecced.getConfig()CODE
CRITICALsrc/state/queries/list-memberships.ts44 const res = await agent.app.bsky.graph.listitem.create(CODE
CRITICALsrc/state/queries/list-memberships.ts144 await agent.app.bsky.graph.listitem.delete({CODE
CRITICALsrc/state/queries/starter-packs.ts131 return await agent.app.bsky.graph.starterpack.create(CODE
CRITICALsrc/state/queries/starter-packs.ts300 await agent.app.bsky.graph.list.delete({CODE
CRITICALsrc/state/queries/starter-packs.ts305 await agent.app.bsky.graph.starterpack.delete({CODE
CRITICALsrc/state/queries/profile.ts567 return await agent.app.bsky.graph.block.create(CODE
CRITICALsrc/state/queries/profile.ts589 await agent.app.bsky.graph.block.delete({CODE
CRITICALsrc/state/queries/list.ts87 const res = await agent.app.bsky.graph.list.create(CODE
CRITICALsrc/state/queries/list.ts140 const {value: record} = await agent.app.bsky.graph.list.get({CODE
CRITICALsrc/state/queries/list.ts205 const res = await agent.app.bsky.graph.listitem.list({CODE
CRITICALsrc/state/queries/post.ts417 return agent.api.app.bsky.graph.muteThread({root: uri})CODE
CRITICALsrc/state/queries/post.ts426 return agent.api.app.bsky.graph.unmuteThread({root: uri})CODE
CRITICALsrc/state/queries/messages/actor-declaration.ts109 const result = await agent.api.com.atproto.repo.deleteRecord({CODE
CRITICALsrc/state/queries/threadgate/index.ts119 agent.api.com.atproto.repo.getRecord({CODE
CRITICALsrc/state/queries/threadgate/index.ts165 agent.api.com.atproto.repo.putRecord({CODE
CRITICAL…queries/verification/useVerificationCreateMutation.tsx22 const {uri} = await agent.app.bsky.graph.verification.create(CODE
CRITICAL…ueries/verification/useVerificationsRemoveMutation.tsx36 return agent.app.bsky.graph.verification.delete({CODE
CRITICALsrc/state/queries/postgate/index.ts58 agent.api.com.atproto.repo.getRecord({CODE
CRITICALsrc/state/queries/postgate/index.ts99 agent.api.com.atproto.repo.putRecord({CODE
CRITICALsrc/view/com/composer/state/composer.ts272 postToRemove.embed.media.video.abortController.abort()CODE
CRITICALsrc/view/com/notifications/NotificationFeedItem.tsx898 const res = await agent.api.chat.bsky.convo.getConvoForMembers(CODE
CRITICALsrc/lib/generate-starterpack.ts35 const list = await agent.app.bsky.graph.list.create(CODE
7 more matches not shown…
Hyper-Verbose Identifiers401 hits · 411 pts
SeverityFileLineSnippetContext
LOWplugins/withGradleJVMHeapSizeIncrease.js26module.exports = function withGradleJVMHeapSizeIncrease(config) {CODE
LOWplugins/withAndroidManifestLargeHeapPlugin.js3module.exports = function withAndroidManifestPlugin(appConfig) {CODE
LOWplugins/withAndroidStylesAccentColorPlugin.js8module.exports = function withAndroidStylesAccentColorPlugin(appConfig) {CODE
LOWplugins/withAndroidNoJitpackPlugin.js5module.exports = function withAndroidNoJitpackPlugin(config) {CODE
LOWplugins/withAndroidManifestFCMIconPlugin.js3module.exports = function withAndroidManifestFCMIconPlugin(appConfig) {CODE
LOW…-handler/src/BackgroundNotificationHandlerProvider.tsx19export function BackgroundNotificationPreferencesProvider({CODE
LOWmodules/bottom-sheet/src/BottomSheetPortal.tsx12export function BottomSheetPortalProvider({CODE
LOW…es/bottom-sheet/src/BottomSheetNativeComponent.web.tsx3export function BottomSheetNativeComponent(_: BottomSheetViewProps) {CODE
LOWmodules/bottom-sheet/src/BottomSheetNativeComponent.tsx129function BottomSheetNativeComponentInner({CODE
LOW…po-bluesky-swiss-army/src/PlatformInfo/index.native.ts8export function getIsReducedMotionEnabled(): boolean {CODE
LOW…ules/expo-bluesky-swiss-army/src/PlatformInfo/index.ts4export function getIsReducedMotionEnabled(): boolean {CODE
LOW…/expo-bluesky-swiss-army/src/PlatformInfo/index.web.ts4export function getIsReducedMotionEnabled(): boolean {CODE
LOWmodules/expo-bluesky-swiss-army/src/Referrer/index.ts4export function getGooglePlayReferrerInfoAsync(): Promise<GooglePlayReferrerInfo> {CODE
LOW…ules/expo-bluesky-swiss-army/src/Referrer/index.web.ts6export function getGooglePlayReferrerInfoAsync(): Promise<GooglePlayReferrerInfo> {CODE
LOW…ules/expo-bluesky-swiss-army/src/Referrer/index.ios.ts5export function getGooglePlayReferrerInfoAsync(): Promise<GooglePlayReferrerInfo> {CODE
LOW…/expo-bluesky-swiss-army/src/Referrer/index.android.ts7export function getGooglePlayReferrerInfoAsync(): Promise<GooglePlayReferrerInfo | null> {CODE
LOWsrc/Navigation.tsx671function NotificationsTabNavigator() {CODE
LOWsrc/Navigation.tsx909 function handlePushNotificationEntry() {CODE
LOWsrc/locale/helpers.ts159export function sanitizeAppLanguageSetting(appLanguage: string): AppLanguage {CODE
LOW…ures/inviteFriends/hooks/useFollowersPromoDismissed.ts7export function useFollowersPromoDismissed() {CODE
LOWsrc/features/liveEvents/preferences.ts39function useWebOnlyDebugLiveEventPreferences() {CODE
LOWsrc/features/liveEvents/preferences.ts59export function useUpdateLiveEventPreferences(props: {CODE
LOWsrc/features/liveEvents/context.tsx106export function useUserPreferencedLiveEvents() {CODE
LOWsrc/features/liveEvents/context.tsx122export function useActiveLiveEventFeedUris() {CODE
LOW…onents/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx17export function DiscoverFeedLiveEventFeedsAndTrendingBanner() {CODE
LOW…vents/components/ExploreScreenLiveEventFeedsBanner.tsx7export function ExploreScreenLiveEventFeedsBanner() {CODE
LOW…/liveEvents/components/SidebarLiveEventFeedsBanner.tsx15export function SidebarLiveEventFeedsBanner() {CODE
LOWsrc/features/liveNow/index.tsx213export function useUpsertLiveStatusMutation(CODE
LOWsrc/features/liveNow/index.tsx347export function useRemoveLiveStatusMutation() {CODE
LOWsrc/features/liveNow/utils.ts23export function getLiveLinkFromStatusRecord(statusRecord: unknown): string {CODE
LOWsrc/state/feed-feedback.tsx305function sendOrAggregateInteractionsForStats(CODE
LOWsrc/state/birthdate.ts21export function snoozeBirthdateUpdateAllowedForDid(did: string) {CODE
LOWsrc/state/birthdate.ts30export function hasSnoozedBirthdateUpdateForDid(did: string) {CODE
LOWsrc/state/birthdate.ts38export function useIsBirthdateUpdateAllowed() {CODE
LOWsrc/state/util.ts35export function useCloseAllActiveElements() {CODE
LOWsrc/state/threadgate-hidden-replies.tsx66export function useThreadgateHiddenReplyUris() {CODE
LOWsrc/state/threadgate-hidden-replies.tsx70export function useThreadgateHiddenReplyUrisAPI() {CODE
LOWsrc/state/threadgate-hidden-replies.tsx74export function useMergedThreadgateHiddenReplies({CODE
LOWsrc/state/threadgate-hidden-replies.tsx89export function useMergeThreadgateHiddenReplies() {CODE
LOWsrc/state/preferences/languages.tsx129export function getAppLanguageAsContentLanguage() {CODE
LOWsrc/state/preferences/alt-text-required.tsx56export function useSetRequireAltTextEnabled() {CODE
LOWsrc/state/preferences/large-alt-badge.tsx56export function useSetLargeAltBadgeEnabled() {CODE
LOWsrc/state/messages/events/index.tsx40export function MessagesEventBusProviderInner({CODE
LOWsrc/state/cache/profile-shadow.ts62export function listenProfileShadowUpdate(CODE
LOWsrc/state/cache/profile-shadow.ts144export function usePostAuthorShadowFilter(data?: FeedPage[]) {CODE
LOWsrc/state/shell/drawer-swipe-disabled.tsx24export function useSetDrawerSwipeDisabled() {CODE
LOWsrc/state/shell/reminders.e2e.ts1export function shouldRequestEmailConfirmation() {CODE
LOWsrc/state/shell/reminders.e2e.ts5export function snoozeEmailConfirmationPrompt() {}CODE
LOWsrc/state/shell/minimal-mode.tsx90export function useMinimalShellModeSetters() {CODE
LOWsrc/state/shell/minimal-mode.tsx99export function useEnableMinimalShellMode({enabled} = {enabled: true}) {CODE
LOWsrc/state/shell/minimal-mode.tsx109export function useEnableMinimalShellModeForScreen(CODE
LOWsrc/state/shell/reminders.ts7export function shouldRequestEmailConfirmation(account: SessionAccount) {CODE
LOWsrc/state/shell/reminders.ts36export function snoozeEmailConfirmationPrompt() {CODE
LOWsrc/state/shell/logged-out.tsx56function getRequestedAccountFromLanding(CODE
LOWsrc/state/persisted/util.ts48export function normalizeLanguageTagToTwoLetterCode(lang: string) {CODE
LOWsrc/state/queries/activity-subscriptions.ts22export function useActivitySubscriptionsQuery() {CODE
LOWsrc/state/queries/activity-subscriptions.ts39export function useNotificationDeclarationQuery() {CODE
LOWsrc/state/queries/activity-subscriptions.ts70export function useNotificationDeclarationMutation() {CODE
LOWsrc/state/queries/known-followers.ts20export function useProfileKnownFollowersQuery(did: string | undefined) {CODE
LOWsrc/state/queries/join-links.ts61export function invalidateJoinLinkPreviewsForCode(CODE
341 more matches not shown…
Over-Commented Block20 hits · 20 pts
SeverityFileLineSnippetContext
LOW__e2e__/perf-test.yml1# flow.yamlCOMMENT
LOWbskyweb/embedr-static/robots.txt1# Hello Friends!COMMENT
LOWdev-env/test-pds.ts81 publicUrl: 'http://localhost:2584',COMMENT
LOWdev-env/test-pds.ts101 // )COMMENT
LOW.github/dependabot.yml1version: 2COMMENT
LOW.github/workflows/claude-mention.yml1name: claude-mentionCOMMENT
LOWmodules/BlueskyNSE/NotificationService.swift1import IntentsCOMMENT
LOWsrc/platform/crypto.ts1// HACKCOMMENT
LOWsrc/state/queries/nuxs/index.ts41 }COMMENT
LOWsrc/screens/Messages/components/MessageComposer.tsx141 }COMMENT
LOW…eens/Messages/components/splitView/leftColumnScroll.ts1// Holds the splitview left column's scroll offset across re-mounts causedCOMMENT
LOWsrc/screens/Search/modules/ExploreTrendingVideos.tsx61COMMENT
LOWsrc/view/shell/index.tsx161 handler = handler.requireExternalGestureToFail(trendingScrollGesture)COMMENT
LOWsrc/view/com/util/Link.tsx361 </Text>COMMENT
LOWsrc/lib/demo.ts41 record: {COMMENT
LOWsrc/lib/demo.ts121 // width: 598,COMMENT
LOWsrc/lib/international-telephone-codes.ts1241 unicodeFlag: '🇲🇵',COMMENT
LOWsrc/lib/api/feed-manip.ts261 // Some feeds, like Following, dedupe by thread, so you only see the most recent reply.COMMENT
LOWsrc/lib/media/video/constants.ts1// Shared compression knobs. Mirrored between native (compress.ts) and webCOMMENT
LOWsrc/analytics/PassiveAnalytics.tsx21 ax.metric('state:background', {COMMENT
Fake / Example Data19 hits · 20 pts
SeverityFileLineSnippetContext
LOW.jscodeshift/file/lingui-v5.js8 * _(msg`Lorem ipsum`)COMMENT
LOW.jscodeshift/file/lingui-v5.js13 * l`Lorem ipsum`COMMENT
LOWsrc/screens/Messages/components/MessageComposer.tsx254 ? l({message: 'Loading chat…', context: 'placeholder'})CODE
LOWsrc/components/forms/TextField.tsx150 'value' | 'onChangeText' | 'placeholder'CODE
LOWsrc/components/ProgressGuide/FollowDialog.tsx49 type: 'placeholder'CODE
LOWsrc/components/ProgressGuide/FollowDialog.tsx182 type: 'placeholder',CODE
LOWsrc/components/ProgressGuide/FollowDialog.tsx258 case 'placeholder': {CODE
LOWsrc/components/dialogs/SearchablePeopleList.tsx59 type: 'placeholder'CODE
LOWsrc/components/dialogs/SearchablePeopleList.tsx152 type: 'placeholder',CODE
LOWsrc/components/dialogs/SearchablePeopleList.tsx285 case 'placeholder': {CODE
LOWsrc/components/dms/AddMembersFlow.tsx55 type: 'placeholder'CODE
LOWsrc/components/dms/AddMembersFlow.tsx234 _items.push({type: 'placeholder', key: i + ''})CODE
LOWsrc/components/dms/AddMembersFlow.tsx296 case 'placeholder': {CODE
LOWsrc/components/dms/InitiateChatFlow.tsx73 type: 'placeholder'CODE
LOWsrc/components/dms/InitiateChatFlow.tsx321 type: 'placeholder',CODE
LOWsrc/components/dms/InitiateChatFlow.tsx461 case 'placeholder': {CODE
LOWsrc/view/screens/Storybook/Forms.tsx65 defaultValue="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec auctor, nisl eget ultricies lacinCODE
LOWsrc/view/screens/Storybook/Forms.tsx65 defaultValue="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec auctor, nisl eget ultricies lacinCODE
LOWsrc/view/com/composer/text-input/TextInput.types.ts36 | 'placeholder'CODE
Synthetic Comment Markers1 hit · 8 pts
SeverityFileLineSnippetContext
HIGHsrc/components/intents/GroupChatJoinDialog.tsx110 // Optimistically mark the link as requested so any invite cardsCOMMENT
Example Usage Blocks4 hits · 6 pts
SeverityFileLineSnippetContext
LOWbskylink/tests/infra/with-test-db.sh3# Example usage:COMMENT
LOWdev-env/dev-infra/with-test-db.sh3# Example usage:COMMENT
LOWdev-env/dev-infra/with-test-redis-and-db.sh3# Example usage:COMMENT
LOWscripts/push-notification/send.sh7# Usage:COMMENT
Slop Phrases2 hits · 4 pts
SeverityFileLineSnippetContext
MEDIUMweb/index.html144 Feel free to customize this however you'd like.CODE
LOWsrc/view/com/util/Views.tsx6// If you explode these into functions, don't forget to forwardRef!COMMENT
AI Slop Vocabulary1 hit · 3 pts
SeverityFileLineSnippetContext
MEDIUMsrc/view/com/composer/drafts/state/api.ts514 // legacy `images`, >4 promotes to `gallery`). This keeps restore robustCOMMENT
Verbosity Indicators1 hit · 2 pts
SeverityFileLineSnippetContext
LOWsrc/state/queries/post-feed.ts208 * If this is a public view, we need to check if posts fail moderation.COMMENT
TODO Padding1 hit · 2 pts
SeverityFileLineSnippetContext
LOWsrc/screens/VideoFeed/index.tsx1047 // TODO: implement viaRepost -sfnCOMMENT