chore: go fmt

This commit is contained in:
xuu 2025-03-26 15:38:25 -06:00
parent b34c9bc99f
commit fe28b7c2ad
Signed by: xuu
GPG Key ID: 8B3B0604F164E04F
5 changed files with 40 additions and 37 deletions

View File

@ -373,6 +373,9 @@ func (feed *Feed) MakeHTTPRequest(ctx context.Context) (*http.Request, error) {
if strings.Contains(feed.URI, "lublin.se") {
return nil, fmt.Errorf("%w: permaban: %s", ErrPermanentlyDead, feed.URI)
}
if strings.Contains(feed.URI, "enotty.dk") {
return nil, fmt.Errorf("%w: permaban: %s", ErrPermanentlyDead, feed.URI)
}
req, err := http.NewRequestWithContext(ctx, "GET", feed.URI, nil)
if err != nil {