From dc1720fca654fb6bc53fa57ad7a4d85f767d2a9b Mon Sep 17 00:00:00 2001 From: DS Boyce <260543580+ds-boyce@users.noreply.github.com> Date: Thu, 11 Jun 2026 11:05:07 -0700 Subject: [PATCH] Fix followed by chat invites (#10873) --- src/components/dms/ChatInvite/Root.tsx | 2 +- src/components/intents/GroupChatJoinDialog.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/dms/ChatInvite/Root.tsx b/src/components/dms/ChatInvite/Root.tsx index 016f28d009..16f5bdfae4 100644 --- a/src/components/dms/ChatInvite/Root.tsx +++ b/src/components/dms/ChatInvite/Root.tsx @@ -81,7 +81,7 @@ export function Root({ let action: ChatInviteAction | undefined if (ChatBskyGroupDefs.isJoinLinkPreviewView(preview)) { const convoId = preview.convo?.id - const isFollowing = preview.owner.viewer?.following ?? false + const isFollowing = preview.owner.viewer?.followedBy ?? false const hasRequested = !convoId && preview.viewer?.requestedAt != null if (convoId && convoId === currentConvoId) { diff --git a/src/components/intents/GroupChatJoinDialog.tsx b/src/components/intents/GroupChatJoinDialog.tsx index 287ccbca58..5ff44e5d64 100644 --- a/src/components/intents/GroupChatJoinDialog.tsx +++ b/src/components/intents/GroupChatJoinDialog.tsx @@ -285,7 +285,7 @@ function GroupChatJoinDialogContent({code}: {code?: string}) { } const convoId = joinLinkPreview.convoId - const isFollowing = joinLinkPreview.owner.viewer?.following ?? false + const isFollowing = joinLinkPreview.owner.viewer?.followedBy ?? false const hasRequested = !joinLinkPreview.convo && joinLinkPreview.viewer?.requestedAt != null