Skip to content

Commit aced1aa

Browse files
Te-kDonnchaC
andauthored
Fixes a bug in Android SMS parsing #526 (#530)
Co-authored-by: Donncha Ó Cearbhaill <[email protected]>
1 parent 052c4e2 commit aced1aa

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

src/mvt/android/modules/adb/sms.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,10 @@ def _parse_db(self, db_path: str) -> None:
114114
message["isodate"] = convert_unix_to_iso(message["timestamp"])
115115

116116
# Extract links in the message body
117-
links = check_for_links(message["body"])
118-
message["links"] = links
117+
body = message.get("body", None)
118+
if body:
119+
links = check_for_links(message["body"])
120+
message["links"] = links
119121

120122
self.results.append(message)
121123

src/mvt/android/parsers/backup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,9 @@ def parse_sms_file(data):
230230
entry["body"] = entry["mms_body"]
231231
entry.pop("mms_body")
232232

233-
message_links = check_for_links(entry["body"])
233+
body = entry.get("body", None)
234+
if body:
235+
message_links = check_for_links(entry["body"])
234236

235237
entry["isodate"] = convert_unix_to_iso(int(entry["date"]) / 1000)
236238
entry["direction"] = "sent" if int(entry["date_sent"]) else "received"

0 commit comments

Comments
 (0)