From 54d626d5cd5ef725fdc82c756e149d4fe2672f7f Mon Sep 17 00:00:00 2001 From: Thomas Date: Sat, 17 Jun 2023 17:53:00 +0200 Subject: [PATCH] [XPathAbstract] Use baseURI to fix relative links (if available) (#3439) --- lib/XPathAbstract.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/XPathAbstract.php b/lib/XPathAbstract.php index 27d6e1a1..05929322 100644 --- a/lib/XPathAbstract.php +++ b/lib/XPathAbstract.php @@ -388,7 +388,7 @@ abstract class XPathAbstract extends BridgeAbstract libxml_use_internal_errors(false); // fix relative links - defaultLinkTo($webPageHtml, $this->feedUri); + defaultLinkTo($webPageHtml, $webPageHtml->baseURI ?? $this->feedUri); $xpath = new \DOMXPath($webPageHtml);