Skip to content

Commit

Permalink
Fixes additional issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Te-k committed Apr 26, 2024
1 parent 32b2460 commit 27e80fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mvt/ios/modules/mixed/sms.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def serialize(self, record: dict) -> Union[dict, list]:
},
]
# 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"],
Expand Down

0 comments on commit 27e80fc

Please sign in to comment.