Merge remote-tracking branch 'parent/main' into upstream-20230103

This commit is contained in:
KMY 2024-01-03 19:15:01 +09:00
commit 7356f776f2
60 changed files with 1349 additions and 323 deletions

View file

@ -13,7 +13,9 @@ class Api::V1::StreamingController < Api::BaseController
def streaming_api_url
Addressable::URI.parse(request.url).tap do |uri|
uri.host = Addressable::URI.parse(Rails.configuration.x.streaming_api_base_url).host
base_url = Addressable::URI.parse(Rails.configuration.x.streaming_api_base_url)
uri.host = base_url.host
uri.port = base_url.port
end.to_s
end
end