A social RSS reader built on the AT Protocol. glean.at
glean atproto atmosphere rss feed social app
14
fork

Configure Feed

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

Call immediately runSyncAll in PeriodicSync

+2
+2
internal/server/server.go
··· 400 400 // appear after Jetstream downtime or rare missed events. This catches up by 401 401 // reconciling each user's PDS records against the local index. 402 402 func (s *Server) PeriodicSync(ctx context.Context, interval time.Duration) { 403 + s.runSyncAll(ctx) 404 + 403 405 ticker := time.NewTicker(interval) 404 406 defer ticker.Stop() 405 407