File tree 2 files changed +7
-3
lines changed
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -114,8 +114,10 @@ def _parse_db(self, db_path: str) -> None:
114
114
message ["isodate" ] = convert_unix_to_iso (message ["timestamp" ])
115
115
116
116
# 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
119
121
120
122
self .results .append (message )
121
123
Original file line number Diff line number Diff line change @@ -230,7 +230,9 @@ def parse_sms_file(data):
230
230
entry ["body" ] = entry ["mms_body" ]
231
231
entry .pop ("mms_body" )
232
232
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" ])
234
236
235
237
entry ["isodate" ] = convert_unix_to_iso (int (entry ["date" ]) / 1000 )
236
238
entry ["direction" ] = "sent" if int (entry ["date_sent" ]) else "received"
You can’t perform that action at this time.
0 commit comments