API: Fix error code for disabled popular endpoint (#4296)

When visiting /api/v1/popular and popular endpoint is disabled
Before:

500 {"error":"Closed stream"}

After

403 {"error":"Administrator has disabled this endpoint."}
This commit is contained in:
Samantaz Fox 2024-07-10 22:25:31 +02:00
commit 436a61e3bb
No known key found for this signature in database
GPG key ID: F42821059186176E

View file

@ -31,7 +31,7 @@ module Invidious::Routes::API::V1::Feeds
if !CONFIG.popular_enabled
error_message = {"error" => "Administrator has disabled this endpoint."}.to_json
haltf env, 400, error_message
haltf env, 403, error_message
end
JSON.build do |json|