summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/invidious/routes/api/v1/feeds.cr3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/invidious/routes/api/v1/feeds.cr b/src/invidious/routes/api/v1/feeds.cr
index 0ee22ca6..41865f34 100644
--- a/src/invidious/routes/api/v1/feeds.cr
+++ b/src/invidious/routes/api/v1/feeds.cr
@@ -30,7 +30,8 @@ module Invidious::Routes::API::V1::Feeds
env.response.content_type = "application/json"
if !CONFIG.popular_enabled
- return error_json(403, "Administrator has disabled this endpoint.")
+ error_message = {"error" => "Administrator has disabled this endpoint."}.to_json
+ haltf env, 400, error_message
end
JSON.build do |json|