Skip to content

Commit fa802f4

Browse files
committed
fix: [Onion module] fix already crawled domains
1 parent bebbcc4 commit fa802f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/modules/Onion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def compute(self, message):
142142
dom = Domain(domain)
143143
# Domain Crawled today or UP this month
144144
if dom.is_down_today() or dom.is_up_this_month():
145-
return None
145+
continue
146146

147147
task_uuid = crawlers.create_task(domain, parent=obj.get_id(), priority=0, new_task=True,
148148
har=self.har, screenshot=self.screenshot)

0 commit comments

Comments
 (0)