Avoid redundant HTTP request on some error cases (#10115)

This commit is contained in:
ThibG 2019-02-25 15:54:17 +01:00 committed by Eugen Rochko
parent 1219e463f9
commit 04197a2745

View file

@ -68,6 +68,7 @@ module JsonLdHelper
return body_to_json(response.body_with_limit) if response.code == 200
end
# If request failed, retry without doing it on behalf of a user
return if on_behalf_of.nil?
build_request(uri).perform do |response|
response.code == 200 ? body_to_json(response.body_with_limit) : nil
end