always send #interactionReply (#9330)

This commit is contained in:
Samuel Newman
2025-11-04 19:21:55 +02:00
parent a232372ce7
commit f7274cbc2a
+6 -12
View File
@@ -175,24 +175,18 @@ let FeedItemInner = ({
const {sendInteraction, feedSourceInfo} = useFeedFeedbackContext() const {sendInteraction, feedSourceInfo} = useFeedFeedbackContext()
const onPressReply = () => { const onPressReply = () => {
if (gate('feed_reply_button_open_thread')) {
sendInteraction({
item: post.uri,
event: 'app.bsky.feed.defs#clickthroughItem',
feedContext,
reqId,
})
navigation.navigate('PostThread', {
name: post.author.did,
rkey,
})
} else {
sendInteraction({ sendInteraction({
item: post.uri, item: post.uri,
event: 'app.bsky.feed.defs#interactionReply', event: 'app.bsky.feed.defs#interactionReply',
feedContext, feedContext,
reqId, reqId,
}) })
if (gate('feed_reply_button_open_thread')) {
navigation.navigate('PostThread', {
name: post.author.did,
rkey,
})
} else {
openComposer({ openComposer({
replyTo: { replyTo: {
uri: post.uri, uri: post.uri,