aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/lib/action_dispatch/http/url.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_dispatch/http/url.rb b/actionpack/lib/action_dispatch/http/url.rb
index 0215de5d55..e970d20c39 100644
--- a/actionpack/lib/action_dispatch/http/url.rb
+++ b/actionpack/lib/action_dispatch/http/url.rb
@@ -99,7 +99,7 @@ module ActionDispatch
end
def named_host?(host)
- host && IP_HOST_REGEXP !~ host
+ IP_HOST_REGEXP !~ host
end
def normalize_protocol(protocol)
@@ -116,7 +116,7 @@ module ActionDispatch
end
def normalize_host(_host, options)
- return _host if !named_host?(_host)
+ return _host unless named_host?(_host)
tld_length = options[:tld_length] || @@tld_length