From 8de58070ee3e55f29966a787fd618632dbf4309b Mon Sep 17 00:00:00 2001 From: Unit 193 Date: Sat, 8 Jan 2022 20:39:28 -0500 Subject: New upstream version 1.20.1. --- gallery_dl/job.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'gallery_dl/job.py') diff --git a/gallery_dl/job.py b/gallery_dl/job.py index 97a8d3f..3e72e9c 100644 --- a/gallery_dl/job.py +++ b/gallery_dl/job.py @@ -501,14 +501,15 @@ class DownloadJob(Job): clist = self.extractor.config("whitelist") if clist is not None: negate = False + special = None else: clist = self.extractor.config("blacklist") negate = True + special = util.SPECIAL_EXTRACTORS if clist is None: clist = (self.extractor.category,) - return util.build_extractor_filter( - clist, negate, util.SPECIAL_EXTRACTORS) + return util.build_extractor_filter(clist, negate, special) class SimulationJob(DownloadJob): -- cgit v1.2.3