This commit is contained in:
Michael 2022-07-29 14:56:40 +00:00
parent 80592f6365
commit 2c32429d8d
1 changed files with 7 additions and 3 deletions

View File

@ -2945,9 +2945,13 @@ class Item
{
// Make sure that for example site parameters aren't used when testing if the link is contained in the body
$urlparts = parse_url($url);
unset($urlparts['query']);
unset($urlparts['fragment']);
$url = Uri::fromParts($urlparts);
if (!empty($urlparts)) {
unset($urlparts['query']);
unset($urlparts['fragment']);
$url = Uri::fromParts($urlparts);
} else {
return false;
}
// Remove media links to only search in embedded content
// @todo Check images for image link, audio for audio links, ...