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