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(lasad): do not delete socket

+6
+6
cmd/lasad/run.go
··· 70 70 var l net.Listener 71 71 if cfg.Listen.Unix != nil { 72 72 l, err = net.Listen("unix", *cfg.Listen.Unix) 73 + defer func() { 74 + err := os.Remove(*cfg.Listen.Unix) 75 + if err != nil { 76 + slog.Error("cannot delete socket", "path", *cfg.Listen.Unix) 77 + } 78 + }() 73 79 } else { 74 80 l, err = net.Listen("tcp", *cfg.Listen.TCP) 75 81 }