diff --git a/README.md b/README.md index 5323bf6e5..4f84d5723 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,7 @@ alt="Get it on Obtainium" height="54" /> --> - Can download videos - Stay on a page when switching accounts - 'Mutuals' in place of 'Following' when relevant +- No age assurance or blocks based on location - No push notifications (hopefully will be added later) - Kept as up-to-date as possible (sporadically unstable as a result) diff --git a/src/view/com/posts/PostFeedReason.tsx b/src/view/com/posts/PostFeedReason.tsx index 575a59f83..124ac8f70 100644 --- a/src/view/com/posts/PostFeedReason.tsx +++ b/src/view/com/posts/PostFeedReason.tsx @@ -64,7 +64,7 @@ export function PostFeedReason({ if (AppBskyFeedDefs.isReasonRepost(reason)) { const isOwner = reason.by.did === currentAccount?.did - const reposter = createSanitizedDisplayName( + const reskeeter = createSanitizedDisplayName( reason.by, false, moderation?.ui('displayName'), @@ -74,7 +74,7 @@ export function PostFeedReason({ style={styles.includeReason} to={makeProfileLink(reason.by)} label={ - isOwner ? _(msg`Reposted by you`) : _(msg`Reposted by ${reposter}`) + isOwner ? _(msg`Reposted by you`) : _(msg`Reposted by ${reskeeter}`) } onPress={onOpenReposter}> Reposted by you ) : ( - Reposted by {reposter} + Reposted by {reskeeter} )}