mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
pull the port out of the options hash once
This commit is contained in:
parent
ed37698596
commit
a64914de4c
1 changed files with 3 additions and 2 deletions
|
@ -75,10 +75,11 @@ module ActionDispatch
|
|||
def build_host_url(options)
|
||||
protocol = options[:protocol]
|
||||
host = options[:host]
|
||||
port = options[:port]
|
||||
if match = host.match(HOST_REGEXP)
|
||||
protocol ||= match[1] unless protocol == false
|
||||
host = match[2]
|
||||
options[:port] = match[3] unless options.key?(:port)
|
||||
port = match[3] unless options.key? :port
|
||||
end
|
||||
|
||||
protocol = normalize_protocol protocol
|
||||
|
@ -91,7 +92,7 @@ module ActionDispatch
|
|||
end
|
||||
|
||||
result << host
|
||||
normalize_port(options[:port], protocol) { |port|
|
||||
normalize_port(port, protocol) { |port|
|
||||
result << ":#{port}"
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue