Fix 404 for annotations endpoint

This commit is contained in:
Omar Roth 2019-04-13 08:28:59 -05:00
parent 80a567bf1e
commit ae52ff93b2
1 changed files with 5 additions and 0 deletions

View File

@ -2921,6 +2921,11 @@ get "/api/v1/annotations/:id" do |env|
response = HTTP::Client.get(URI.parse(location.headers["Location"]))
if response.body.empty?
env.response.status_code = 404
next
end
if response.status_code != 200
env.response.status_code = response.status_code
next