this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

dont have circular imports

+1 -2
+1 -2
api/bsky/feedpost_util.go
··· 2 2 3 3 import ( 4 4 "github.com/bluesky-social/indigo/api/atproto" 5 - "github.com/bluesky-social/indigo/api/bsky" 6 5 ) 7 6 8 7 func (fp *FeedPost) GetEmbedRecord() (*atproto.RepoStrongRef, bool) { ··· 21 20 return nil, false 22 21 } 23 22 24 - func (fp *FeedPost) GetEmbedRecordWithMediaMedia() (*bsky.EmbedRecordWithMedia_Media, bool) { 23 + func (fp *FeedPost) GetEmbedRecordWithMediaMedia() (*EmbedRecordWithMedia_Media, bool) { 25 24 if fp.Embed != nil && fp.Embed.EmbedRecordWithMedia != nil && fp.Embed.EmbedRecordWithMedia.Media != nil { 26 25 return fp.Embed.EmbedRecordWithMedia.Media, true 27 26 }