Skip to content

Commit

Permalink
Merge pull request #1679 from 14113/patch-1
Browse files Browse the repository at this point in the history
Fix Undefined Variable Error in ip2location_io
  • Loading branch information
alexreisner authored Jan 30, 2025
2 parents 27ee31a + d0b22a4 commit 5b379a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/geocoder/lookups/ip2location_io.rb
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ def reserved_result(query)
"country_name" => "-",
"region_name" => "-",
"city_name" => "-",
"latitude" => null,
"longitude" => null,
"latitude" => nil,
"longitude" => nil,
"zip_code" => "-",
"time_zone" => "-",
"asn" => "-",
Expand Down

0 comments on commit 5b379a5

Please sign in to comment.