about summary refs log tree commit diff
path: root/app/controllers/api/v1
diff options
context:
space:
mode:
authorMatt Jankowski <matt@jankowski.online>2023-03-25 19:38:32 -0400
committerGitHub <noreply@github.com>2023-03-26 00:38:32 +0100
commite633b26f4f69c068f6479e09254a6ae2277b73dd (patch)
tree0267898f58e46803e447f6d7f47c2de1b2556025 /app/controllers/api/v1
parente63524f45792af83cf802270c3beebc76bada645 (diff)
Add allow_other_host in redirects which may go outside app (#24252)
Diffstat (limited to 'app/controllers/api/v1')
-rw-r--r--app/controllers/api/v1/streaming_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/api/v1/streaming_controller.rb b/app/controllers/api/v1/streaming_controller.rb
index b23a60170..0cdd00d62 100644
--- a/app/controllers/api/v1/streaming_controller.rb
+++ b/app/controllers/api/v1/streaming_controller.rb
@@ -5,7 +5,7 @@ class Api::V1::StreamingController < Api::BaseController
     if Rails.configuration.x.streaming_api_base_url == request.host
       not_found
     else
-      redirect_to streaming_api_url, status: 301
+      redirect_to streaming_api_url, status: 301, allow_other_host: true
     end
   end