https://github.com/bluesky-social/goat but with tangled's CI
fork

Configure Feed

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

allow blocks in #sync output

+4 -2
+4 -2
firehose.go
··· 277 277 if gfc.Quiet { 278 278 return nil 279 279 } 280 - evt.Blocks = nil 280 + if !gfc.Blocks { 281 + evt.Blocks = nil 282 + } 281 283 out := make(map[string]interface{}) 282 284 out["type"] = "sync" 283 - out["commit"] = commit.AsData() 285 + out["commit"] = commit.AsData() // NOTE: funky, but helpful, to include this in output 284 286 out["payload"] = evt 285 287 b, err := json.Marshal(out) 286 288 if err != nil {