Lasa is a stateless proxy that generates a RSS or an Atom feed from a Standard.site publication. lasa.anhgelus.world
rss atom atprotocol standard-site atproto
2
fork

Configure Feed

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

fix(sync): data race when deleting key in map

+2
+2
sync.go
··· 53 53 return v, err 54 54 } 55 55 l.Send(v) 56 + lm.mu.Lock() 56 57 delete(lm.content, key) 58 + lm.mu.Unlock() 57 59 return v, nil 58 60 }