A feed generator that allows Bluesky bookmarks via DMs
0
fork

Configure Feed

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

nothing to unmarshal of course

+1 -7
+1 -7
consumer.go
··· 123 123 return nil 124 124 } 125 125 126 - var post apibsky.FeedPost 127 - if err := json.Unmarshal(event.Commit.Record, &post); err != nil { 128 - // ignore this 129 - return nil 130 - } 131 - 132 126 if event.Did == "did:plc:dadhhalkfcq3gucaq25hjqon" { 133 - slog.Info("delete event received", "post", fmt.Sprintf("%+v", post)) 127 + slog.Info("delete event received") 134 128 } 135 129 136 130 parentURI, err := getSubscribingPostParentURI(h.db, event.Did, event.Commit.RKey)