]> git.openstreetmap.org Git - rails.git/commitdiff
Convert some URLs to https
authorTom Hughes <tom@compton.nu>
Fri, 29 Jun 2018 10:46:54 +0000 (11:46 +0100)
committerTom Hughes <tom@compton.nu>
Fri, 29 Jun 2018 10:46:54 +0000 (11:46 +0100)
lib/nominatim.rb
lib/osm.rb

index 97d158cfdf98f10bc47526c0b397f813b0283a8e..ffa86d93fee3592bf5a22d975c387319c0688083 100644 (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
     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
 
       begin
         response = OSM::Timer.timeout(4) do
index 71e12534ffe57c348d4802d81aeb40f9a4b31cbf..841cce17b8f49dba022de129d7d50b04aba63335 100644 (file)
@@ -510,7 +510,7 @@ module OSM
     if ipinfo
       country = ipinfo.country_code2
     else
     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
 
       country = "GB" if country == "UK"
     end