Convert some URLs to https

This commit is contained in:
Tom Hughes 2018-06-29 11:46:54 +01:00
parent 7377cb6393
commit 1a0ed716f7
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@ module Nominatim
language ||= http_accept_language.user_preferred_languages.join(",")
Rails.cache.fetch "/nominatim/location/#{lat}/#{lon}/#{zoom}/#{language}" do
url = "http://nominatim.openstreetmap.org/reverse?lat=#{lat}&lon=#{lon}&zoom=#{zoom}&accept-language=#{language}"
url = "https://nominatim.openstreetmap.org/reverse?lat=#{lat}&lon=#{lon}&zoom=#{zoom}&accept-language=#{language}"
begin
response = OSM::Timer.timeout(4) do

View file

@ -510,7 +510,7 @@ module OSM
if ipinfo
country = ipinfo.country_code2
else
country = http_client.get("http://api.hostip.info/country.php?ip=#{ip_address}").body
country = http_client.get("https://api.hostip.info/country.php?ip=#{ip_address}").body
country = "GB" if country == "UK"
end