···1313 "github.com/willdot/bskyfeedgen/store"
1414)
15151616+const (
1717+ myDid = "did:plc:dadhhalkfcq3gucaq25hjqon"
1818+)
1919+1620type HandlerStore interface {
1721 AddFeedPost(feedItem store.FeedPost) error
1822 GetSubscriptionsForPost(postURI string) ([]string, error)
···6266 // look for posts that are "subscribe" so that we can add the post URI to a list of posts we want to find replies for
6367 if strings.Contains(post.Text, "/subscribe") {
6468 // For now just look for me
6565- if event.Did != "did:plc:dadhhalkfcq3gucaq25hjqon" {
6969+ if event.Did != myDid {
6670 return nil
6771 }
6872 slog.Info("a post that's subscribing to another post. Adding to posts to look for", "subscribed post URI", subscribedPostURI)