v4.2.4 #54

Merged
asonix merged 27 commits from v4.2.4-branch into asonix/changes 2024-01-29 19:41:35 +00:00
Showing only changes of commit 01caa18e5b - Show all commits

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