Fix warning when loading invalid html

This commit is contained in:
Michael 2022-11-09 06:38:31 +00:00
parent a7e576fda0
commit e9393fb509
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ class CheckRelMeProfileLink
Logger::notice('Empty body of the fetched homepage link). Cannot verify the relation to profile of UID %s.', ['uid' => $uid, 'owner homepage' => $owner['homepage']]);
} else {
$doc = new DOMDocument();
$doc->loadHTML($content);
@$doc->loadHTML($content);
if (!$doc) {
Logger::notice('Could not parse the content');
} else {