From 657d9098659d8b069866ddf69681cd210b24c725 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Mon, 15 Sep 2025 17:02:41 +0200 Subject: [PATCH] [simpcity] extract URLs from iframe embeds (#8214) --- gallery_dl/extractor/simpcity.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gallery_dl/extractor/simpcity.py b/gallery_dl/extractor/simpcity.py index 45189b0a..49a34b7d 100644 --- a/gallery_dl/extractor/simpcity.py +++ b/gallery_dl/extractor/simpcity.py @@ -20,7 +20,8 @@ class SimpcityExtractor(Extractor): root = "https://simpcity.cr" def items(self): - extract_urls = text.re(r' href="([^"]+)').findall + extract_urls = text.re( + r'<(?:a [^>]*?href|iframe [^>]*?src)="([^"]+)').findall for post in self.posts(): urls = extract_urls(post["content"])