From 526a42a04d53ccbe26d41f14158a5e44eec27314 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Sun, 7 Dec 2025 17:10:06 +0100 Subject: [PATCH] [newgrounds] set error status when failed to extract post (#8654) --- gallery_dl/extractor/newgrounds.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gallery_dl/extractor/newgrounds.py b/gallery_dl/extractor/newgrounds.py index d636479b..f980f4b5 100644 --- a/gallery_dl/extractor/newgrounds.py +++ b/gallery_dl/extractor/newgrounds.py @@ -88,6 +88,7 @@ class NewgroundsExtractor(Extractor): text.nameext_from_url(url, post) yield Message.Url, url, post else: + self.status |= 1 self.log.warning( "Unable to get download URL for '%s'", post_url)