this repo has no description
0
fork

Configure Feed

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

Update backfill package to use HTTP/HTTPS for getRepo always (#875)

authored by

Jaz and committed by
GitHub
749cc07b 5ee89370

+8
+8
backfill/backfill.go
··· 140 140 if opts == nil { 141 141 opts = DefaultBackfillOptions() 142 142 } 143 + 144 + // Convert wss:// or ws:// to https:// or http:// 145 + if strings.HasPrefix(opts.RelayHost, "wss://") { 146 + opts.RelayHost = "https://" + opts.RelayHost[6:] 147 + } else if strings.HasPrefix(opts.RelayHost, "ws://") { 148 + opts.RelayHost = "http://" + opts.RelayHost[5:] 149 + } 150 + 143 151 return &Backfiller{ 144 152 Name: name, 145 153 Store: store,