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(cache): not checking if is empty for did doc

+1 -1
+1 -1
directory.go
··· 33 33 } 34 34 resp, err := d.cache.Get(ctx, key) 35 35 var doc *atproto.DIDDocument 36 - if err == nil { 36 + if err == nil && !resp.IsNil() { 37 37 b := resp.Value() 38 38 err = json.Unmarshal([]byte(b), &doc) 39 39 if err == nil {