af_redditimgur: absolutize links before working on them

This commit is contained in:
Andrew Dolgov
2022-07-27 07:16:57 +03:00
parent 4e02dc0ab5
commit 6a68ed0208

View File

@@ -651,7 +651,9 @@ class Af_RedditImgur extends Plugin {
$xpath = new DOMXPath($doc);
/** @var ?DOMElement $content_link */
$content_link = $xpath->query("(//a[contains(., '[link]')])")->item(0);
$content_link = UrlHelper::rewrite_relative($article["link"],
$xpath->query("(//a[contains(., '[link]')])")->item(0),
"a");
if ($this->host->get($this, "enable_content_dupcheck")) {