1
0
Fork 0
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:
Aaron Patterson 2014-06-11 15:01:30 -07:00
parent ed37698596
commit a64914de4c

View file

@ -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}"
}