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/view/com/posts/PostFeed.tsx | |
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/view/com/posts/PostFeed.tsx')
-rw-r--r-- | src/view/com/posts/PostFeed.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/view/com/posts/PostFeed.tsx b/src/view/com/posts/PostFeed.tsx index 4bd971b3f..67ecfa25a 100644 --- a/src/view/com/posts/PostFeed.tsx +++ b/src/view/com/posts/PostFeed.tsx @@ -347,7 +347,9 @@ let PostFeed = ({ }[] = [] for (const page of data.pages) { for (const slice of page.slices) { - const item = slice.items.at(0) + const item = slice.items.find( + item => item.uri === slice.feedPostUri, + ) if (item && AppBskyEmbedVideo.isView(item.post.embed)) { videos.push({item, feedContext: slice.feedContext}) } |