From 8e00f044fea7bd3f430b176a5226a725245428eb Mon Sep 17 00:00:00 2001 From: Chris Kanich Date: Tue, 21 Jan 2025 14:08:37 -0600 Subject: 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 --- src/lib/api/feed-manip.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/lib/api/feed-manip.ts') diff --git a/src/lib/api/feed-manip.ts b/src/lib/api/feed-manip.ts index 0eca8b165..4aa20fd12 100644 --- a/src/lib/api/feed-manip.ts +++ b/src/lib/api/feed-manip.ts @@ -41,6 +41,7 @@ export class FeedViewPostsSlice { isFallbackMarker: boolean isOrphan: boolean rootUri: string + feedPostUri: string constructor(feedPost: FeedViewPost) { const {post, reply, reason} = feedPost @@ -48,6 +49,7 @@ export class FeedViewPostsSlice { this.isIncompleteThread = false this.isFallbackMarker = false this.isOrphan = false + this.feedPostUri = post.uri if (AppBskyFeedDefs.isPostView(reply?.root)) { this.rootUri = reply.root.uri } else { -- cgit 1.4.1