Browse Source

Fix response code check

pull/158/head
Richard Lewis 7 years ago
parent
commit
c30a9f87b3
  1. 2
      src/github.com/matrix-org/go-neb/services/imgur/imgur.go

2
src/github.com/matrix-org/go-neb/services/imgur/imgur.go

@ -219,7 +219,7 @@ func (s *Service) text2imgImgur(query string) (*imgurGalleryImage, *imgurGallery
if err != nil {
return nil, nil, err
}
if res.StatusCode > 200 {
if res.StatusCode < 200 || res.StatusCode >= 300 {
return nil, nil, fmt.Errorf("Request error: %d, %s", res.StatusCode, response2String(res))
}

Loading…
Cancel
Save