Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Fix detection of !no-unauthenticated (#3279)

authored by

Paul Frazee and committed by
GitHub
bdf77f85 43be4f7d

+4 -2
+2 -1
src/components/moderation/ScreenHider.tsx
··· 56 56 57 57 const isNoPwi = !!modui.blurs.find( 58 58 cause => 59 - cause.type === 'label' && cause.labelDef.id === '!no-unauthenticated', 59 + cause.type === 'label' && 60 + cause.labelDef.identifier === '!no-unauthenticated', 60 61 ) 61 62 return ( 62 63 <CenteredView
+2 -1
src/view/com/post-thread/PostThread.tsx
··· 108 108 ?.ui('contentList') 109 109 .blurs.find( 110 110 cause => 111 - cause.type === 'label' && cause.labelDef.id === '!no-unauthenticated', 111 + cause.type === 'label' && 112 + cause.labelDef.identifier === '!no-unauthenticated', 112 113 ) 113 114 }, [rootPost, moderationOpts]) 114 115