Skip to content
Snippets Groups Projects
Commit 6c27706f authored by Alex Reisner's avatar Alex Reisner
Browse files

Use #protocol method rather than re-reading config.

This was preventing lookups from forcing a particular protocol.
parent b4c6633c
No related branches found
No related tags found
No related merge requests found
...@@ -99,7 +99,6 @@ module Geocoder ...@@ -99,7 +99,6 @@ module Geocoder
# Object used to make HTTP requests. # Object used to make HTTP requests.
# #
def http_client def http_client
protocol = "http#{'s' if use_ssl?}"
proxy_name = "#{protocol}_proxy" proxy_name = "#{protocol}_proxy"
if proxy = configuration.send(proxy_name) if proxy = configuration.send(proxy_name)
proxy_url = !!(proxy =~ /^#{protocol}/) ? proxy : protocol + '://' + proxy proxy_url = !!(proxy =~ /^#{protocol}/) ? proxy : protocol + '://' + proxy
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment