Handle app.bsky.embed.record
All checks were successful
/ build (push) Successful in 1m31s

This commit is contained in:
Astra 2026-03-26 11:56:31 +00:00
parent 60f9482f67
commit 46a33f2af7
2 changed files with 16 additions and 6 deletions

View file

@ -419,8 +419,8 @@ func (p *Post) GetEmbeds() []ParsedEmbeds {
case "app.bsky.embed.record":
if p.Embed.Record != nil {
parsedEmbeds = append(parsedEmbeds, ParsedEmbeds{
URI: p.Embed.Record.Record.URI,
Cid: p.Embed.Record.Record.Cid,
URI: p.Embed.Record.URI,
Cid: p.Embed.Record.Cid,
Type: "record",
})
}