Fixes an issue in androidqf SMS module

This commit is contained in:
tek 2023-05-06 11:04:42 -04:00
parent 912fb060cb
commit 11730f164f

View File

@ -38,7 +38,7 @@ class SMS(AndroidQFModule):
if "body" not in message:
continue
if self.indicators.check_domains(message["links"]):
if self.indicators.check_domains(message.get("links", [])):
self.detected.append(message)
def parse_backup(self, data):