We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8bb0ca commit 83a759fCopy full SHA for 83a759f
src/Http/CurlDispatcher.php
@@ -182,7 +182,7 @@ public function dispatchImages(array $urls)
182
$curl = new CurlResult($connection);
183
184
$curl->onBody(function ($body, stdClass $data) {
185
- if (($info = getimagesizefromstring($body))) {
+ if (($info = @getimagesizefromstring($body))) {
186
$data->width = $info[0];
187
$data->height = $info[1];
188
$data->mime = $info['mime'];
0 commit comments