PageContent return null issue
This commit is contained in:
parent
48587d2c38
commit
7ef17bb394
1 changed files with 1 additions and 1 deletions
|
@ -370,6 +370,6 @@ class PageContent
|
|||
$dom->loadHTML($htmlContent);
|
||||
$images = $dom->getElementsByTagName('img');
|
||||
|
||||
return $images[0]->getAttribute('src');
|
||||
return $images ? $images[0]->getAttribute('src') : null;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue