Bluesky app fork with some witchin' additions 💫

always send #interactionReply (#9330)

authored by samuel.fm and committed by

GitHub fb3f1c39 78e20c42

+6 -12
+6 -12
src/view/com/posts/PostFeedItem.tsx
··· 175 175 const {sendInteraction, feedSourceInfo} = useFeedFeedbackContext() 176 176 177 177 const onPressReply = () => { 178 + sendInteraction({ 179 + item: post.uri, 180 + event: 'app.bsky.feed.defs#interactionReply', 181 + feedContext, 182 + reqId, 183 + }) 178 184 if (gate('feed_reply_button_open_thread')) { 179 - sendInteraction({ 180 - item: post.uri, 181 - event: 'app.bsky.feed.defs#clickthroughItem', 182 - feedContext, 183 - reqId, 184 - }) 185 185 navigation.navigate('PostThread', { 186 186 name: post.author.did, 187 187 rkey, 188 188 }) 189 189 } else { 190 - sendInteraction({ 191 - item: post.uri, 192 - event: 'app.bsky.feed.defs#interactionReply', 193 - feedContext, 194 - reqId, 195 - }) 196 190 openComposer({ 197 191 replyTo: { 198 192 uri: post.uri,