Fix undefined method error in sidekiq (#9807)
* Fix undefined method error in sidekiq Body can be not nil but still be empty, which causes a `NoMethodError: undefined method `[]' for nil:NilClass` further in the code. This checks for an empty body to avoid the issue. * Fix codeclimate issue
Showing
- app/services/fetch_oembed_service.rb 1 addition, 1 deletionapp/services/fetch_oembed_service.rb
- spec/fixtures/requests/oembed_json_empty.html 7 additions, 0 deletionsspec/fixtures/requests/oembed_json_empty.html
- spec/services/fetch_oembed_service_spec.rb 18 additions, 0 deletionsspec/services/fetch_oembed_service_spec.rb
Please register or sign in to comment