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
This commit is contained in:
Chris Kanich
2025-01-21 14:08:37 -06:00
committed by GitHub
parent 45b5af604a
commit 8e00f044fe
4 changed files with 14 additions and 5 deletions
+3 -1
View File
@@ -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})
}