Skip to content

Commit 280b838

Browse files
authored
Merge pull request #161 from highstrike/patch-2
Placing the country name correctly in ipdata.co
2 parents 2c406bd + 02587e4 commit 280b838

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Services/IPData.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public function locate($ip)
5353
return $this->hydrate([
5454
'ip' => $ip,
5555
'iso_code' => $json['country_code'],
56-
'country' => $json['continent_name'],
56+
'country' => $json['country_name'],
5757
'city' => $json['city'],
5858
'state' => $json['region_code'],
5959
'state_name' => $json['region'],
@@ -65,4 +65,4 @@ public function locate($ip)
6565
'currency' => Arr::get($json, 'currency.code'),
6666
]);
6767
}
68-
}
68+
}

0 commit comments

Comments
 (0)