Bluesky app fork with some witchin' additions 💫

fix: "reposted by" messages and update readme for last change

xan.lol 0c0d7c22 62334b9f

verified
+4 -3
+1
README.md
··· 26 26 - Can download videos 27 27 - Stay on a page when switching accounts 28 28 - 'Mutuals' in place of 'Following' when relevant 29 + - No age assurance or blocks based on location 29 30 - No push notifications (hopefully will be added later) 30 31 - Kept as up-to-date as possible (sporadically unstable as a result) 31 32
+3 -3
src/view/com/posts/PostFeedReason.tsx
··· 64 64 65 65 if (AppBskyFeedDefs.isReasonRepost(reason)) { 66 66 const isOwner = reason.by.did === currentAccount?.did 67 - const reposter = createSanitizedDisplayName( 67 + const reskeeter = createSanitizedDisplayName( 68 68 reason.by, 69 69 false, 70 70 moderation?.ui('displayName'), ··· 74 74 style={styles.includeReason} 75 75 to={makeProfileLink(reason.by)} 76 76 label={ 77 - isOwner ? _(msg`Reposted by you`) : _(msg`Reposted by ${reposter}`) 77 + isOwner ? _(msg`Reposted by you`) : _(msg`Reposted by ${reskeeter}`) 78 78 } 79 79 onPress={onOpenReposter}> 80 80 <RepostIcon ··· 93 93 {isOwner ? ( 94 94 <Trans>Reposted by you</Trans> 95 95 ) : ( 96 - <Trans>Reposted by {reposter}</Trans> 96 + <Trans>Reposted by {reskeeter}</Trans> 97 97 )} 98 98 </Text> 99 99 </ProfileHoverCard>