mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-02 17:03:25 +05:30
Fix 404 for annotations endpoint
This commit is contained in:
parent
80a567bf1e
commit
ae52ff93b2
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user