Fix operator precedence

This commit is contained in:
Philip Klempin 2021-06-18 12:52:29 +02:00
parent f16fc3bf41
commit 1d4d3bc49c
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ class UrlHelper {
$owner_attribute == "href") {
return $rel_url;
// allow limited subset of inline base64-encoded images for IMG elements
} else if ($rel_parts["scheme"] ?? "" == "data" &&
} else if (($rel_parts["scheme"] ?? "") == "data" &&
preg_match('%^image/(webp|gif|jpg|png|svg);base64,%', $rel_parts["path"]) &&
$owner_element == "img" &&
$owner_attribute == "src") {