From d767abb9124d61d05505a55aa6e45c72202d9147 Mon Sep 17 00:00:00 2001 From: tek Date: Thu, 13 Apr 2023 13:21:33 +0200 Subject: [PATCH] Fixes a bug in the calendar plugin --- mvt/ios/modules/mixed/calendar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mvt/ios/modules/mixed/calendar.py b/mvt/ios/modules/mixed/calendar.py index 4813800..6a5a866 100644 --- a/mvt/ios/modules/mixed/calendar.py +++ b/mvt/ios/modules/mixed/calendar.py @@ -59,7 +59,7 @@ class Calendar(IOSExtraction): def check_indicators(self) -> None: for result in self.results: - if result["participant_email"]: + if result["participant_email"] and self.indicators: ioc = self.indicators.check_email(result["participant_email"]) if ioc: result["matched_indicator"] = ioc