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

Configure Feed

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

make firehose relay URL parsing more forgiving

+6
+6
firehose.go
··· 141 141 if err != nil { 142 142 return fmt.Errorf("invalid relayHost URI: %w", err) 143 143 } 144 + switch u.Scheme { 145 + case "http": 146 + u.Scheme = "ws" 147 + case "https": 148 + u.Scheme = "wss" 149 + } 144 150 u.Path = "xrpc/com.atproto.sync.subscribeRepos" 145 151 if cctx.IsSet("cursor") { 146 152 u.RawQuery = fmt.Sprintf("cursor=%d", cctx.Int("cursor"))