From a91047dacfa9a10d989c8a33557601528fb0a8fd Mon Sep 17 00:00:00 2001 From: cp6 Date: Mon, 9 Dec 2024 22:37:13 +1100 Subject: [PATCH] Fixed error in call when fetching IP who is data --- app/Models/IPs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/IPs.php b/app/Models/IPs.php index 0259baa..f7f6d0e 100644 --- a/app/Models/IPs.php +++ b/app/Models/IPs.php @@ -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()) {