Fixed error in call when fetching IP who is data

This commit is contained in:
cp6 2024-12-09 22:37:13 +11:00
parent 00701650e6
commit a91047dacf

View file

@ -55,7 +55,7 @@ class IPs extends Model
public static function getUpdateIpInfo(IPs $IP): bool
{
$response = Http::get("https://ipwhois.app/json/{{$IP->address}}");
$response = Http::get("https://ipwhois.app/json/{$IP->address}");
if ($response->ok()) {