From 32e95f403c4146929352f19b12589ae27289ddb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Sat, 10 Jan 2026 09:25:25 +0100 Subject: [PATCH] [xenforo:media] fix '403 Forbidden' with enabled 'metadata' (#8785) https://github.com/mikf/gallery-dl/issues/8785#issuecomment-3732116455 --- gallery_dl/extractor/xenforo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gallery_dl/extractor/xenforo.py b/gallery_dl/extractor/xenforo.py index 9a9781c6..7a1ef442 100644 --- a/gallery_dl/extractor/xenforo.py +++ b/gallery_dl/extractor/xenforo.py @@ -260,7 +260,7 @@ class XenforoExtractor(BaseExtractor): return f"{self.root_media}{path}/full", media def _extract_media_ex(self, path, file): - page = self.request(f"{self.root}{path}/").text + page = self.request(f"{self.root_media}{path}/").text schema = self._extract_jsonld(page) main = schema["mainEntity"]