diff --git a/src/OpenWeather.php b/src/OpenWeather.php index 88a6ff0..d089a31 100644 --- a/src/OpenWeather.php +++ b/src/OpenWeather.php @@ -235,7 +235,7 @@ private function parseOnecallResponse(string $response) 'condition' => [ 'name' => $item['weather'][0]['main'], 'desc' => $item['weather'][0]['description'], - 'icon' => $this->url_icons . $item['weather'][0]['icon'] . '.png', + 'icon' => $this->api_endpoint_icons . $item['weather'][0]['icon'] . '.png', ], 'forecast' => [ 'temp' => round($item['temp']),