diff --git a/src/Engine/EngineBase.php b/src/Engine/EngineBase.php index dfb6365..a909f00 100644 --- a/src/Engine/EngineBase.php +++ b/src/Engine/EngineBase.php @@ -244,7 +244,7 @@ public function getImage( string $imageUrl, array $crop, ?bool $downloadMode = f return $image; } - $imageResponse = $this->httpClient->request( 'GET', $image->getUrl() ); + $imageResponse = $this->httpClient->request( 'GET', $image->getUrl(), [ 'timeout' => 120 ] ); try { $data = $imageResponse->getContent(); } catch ( ClientException $exception ) {