From 27e80fc69dd23b9ec6021f7c544c53c2d238c1ec Mon Sep 17 00:00:00 2001 From: tek Date: Fri, 26 Apr 2024 13:49:48 +0200 Subject: [PATCH] Fixes additional issues --- mvt/ios/modules/mixed/sms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mvt/ios/modules/mixed/sms.py b/mvt/ios/modules/mixed/sms.py index 5f711da..e5743cf 100644 --- a/mvt/ios/modules/mixed/sms.py +++ b/mvt/ios/modules/mixed/sms.py @@ -53,7 +53,7 @@ class SMS(IOSExtraction): }, ] # If the message was read, we add an extra event. - if record["isodate_read"]: + if record.get("isodate_read", None): records.append( { "timestamp": record["isodate_read"],