this repo has no description
0
fork

Configure Feed

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

opps broke it by getting the uris the wrong way around

+1 -1
+1 -1
handler.go
··· 78 78 slog.Info("post is a reply to a post that users are subscribed to", "subscribed post URI", subscribedPostURI, "dids", subscribedDids, "RKey", event.Commit.RKey) 79 79 80 80 replyPostURI := fmt.Sprintf("at://%s/app.bsky.feed.post/%s", event.Did, event.Commit.RKey) 81 - h.createFeedPostForSubscribedUsers(subscribedDids, subscribedPostURI, replyPostURI) 81 + h.createFeedPostForSubscribedUsers(subscribedDids, replyPostURI, subscribedPostURI) 82 82 return nil 83 83 } 84 84