Merge branch 'DL6ER-main'

This commit is contained in:
Nex 2021-08-12 12:56:17 +02:00
commit 257f3732e3

View File

@ -168,7 +168,13 @@ def run_module(module):
try:
module.check_indicators()
except NotImplementedError:
module.log.info("The %s module does not support checking for indicators",
module.__class__.__name__)
pass
else:
if module.indicators and not module.detected:
module.log.info("The %s module produced no detections!",
module.__class__.__name__)
try:
module.to_timeline()