aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib')
-rw-r--r--actionpack/lib/action_dispatch/routing/route_set.rb5
1 files changed, 1 insertions, 4 deletions
diff --git a/actionpack/lib/action_dispatch/routing/route_set.rb b/actionpack/lib/action_dispatch/routing/route_set.rb
index 62928e2777..845ccb5f94 100644
--- a/actionpack/lib/action_dispatch/routing/route_set.rb
+++ b/actionpack/lib/action_dispatch/routing/route_set.rb
@@ -225,10 +225,7 @@ module ActionDispatch
end
def call(t, args)
- options = handle_positional_args(t, args, @options, @segment_keys)
- hash = {
- :only_path => options[:host].nil?
- }.merge!(options)
+ hash = handle_positional_args(t, args, @options, @segment_keys)
hash.reverse_merge!(t.url_options)
t._routes.url_for(hash)
end