diff options
author | Chris Kanich <kaytwo@gmail.com> | 2025-01-21 14:08:37 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-21 20:08:37 +0000 |
commit | 8e00f044fea7bd3f430b176a5226a725245428eb (patch) | |
tree | 9536ed21abb71d96ac3cbaa151e0ba68387f3b4a /src/state/queries/post-feed.ts | |
parent | 45b5af604a17c42a9999ed94b8e981259f2cc2d1 (diff) | |
download | voidsky-8e00f044fea7bd3f430b176a5226a725245428eb.tar.zst |
show video feeds from posts even if they are replies (#7516)
* show video feeds from posts even if they are replies * only show feed post in VideoFeed
Diffstat (limited to 'src/state/queries/post-feed.ts')
-rw-r--r-- | src/state/queries/post-feed.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/state/queries/post-feed.ts b/src/state/queries/post-feed.ts index 6f9af18f0..72d6861d6 100644 --- a/src/state/queries/post-feed.ts +++ b/src/state/queries/post-feed.ts @@ -89,6 +89,7 @@ export interface FeedPostSlice { isIncompleteThread: boolean isFallbackMarker: boolean feedContext: string | undefined + feedPostUri: string reason?: | AppBskyFeedDefs.ReasonRepost | AppBskyFeedDefs.ReasonPin @@ -330,6 +331,7 @@ export function usePostFeedQuery( isFallbackMarker: slice.isFallbackMarker, feedContext: slice.feedContext, reason: slice.reason, + feedPostUri: slice.feedPostUri, items: slice.items.map((item, i) => { const feedPostSliceItem: FeedPostSliceItem = { _reactKey: `${slice._reactKey}-${i}-${item.post.uri}`, |