[architizer] fix 'project' extractor (#7421)

This commit is contained in:
Mike Fährmann
2025-04-26 08:00:20 +02:00
parent 78b34bbdd7
commit fd093c2ef8

View File

@@ -54,7 +54,7 @@ class ArchitizerProjectExtractor(GalleryExtractor):
return [
(url, None)
for url in text.extract_iter(
page, "property='og:image:secure_url' content='", "?")
page, 'property="og:image:secure_url" content="', "?")
]