A social RSS reader built on the AT Protocol. glean.at
glean atproto atmosphere rss feed social app
14
fork

Configure Feed

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

Refine HTTP status code validation range for parser

+1 -1
+1 -1
internal/feed/fetcher.go
··· 52 52 return nil, "", "", nil 53 53 } 54 54 55 - if resp.StatusCode != http.StatusOK { 55 + if resp.StatusCode < 200 || resp.StatusCode >= 300 { 56 56 return nil, "", "", fmt.Errorf("unexpected status: %d", resp.StatusCode) 57 57 } 58 58