Add extra checks for getting messages

master
Mark Veidemanis 3 years ago
parent 244e1f7b7b
commit 14b0054339
Signed by: m
GPG Key ID: 5ACFCEED46C0904F

@ -170,6 +170,9 @@ class Agora(object):
messages = self.agora.recent_messages()
if not messages["success"]:
return False
if not "data" in messages["response"]:
self.log.error("Data not in messages response: {content}", content=messages["response"])
return False
open_tx = self.tx.get_ref_map().keys()
for message in messages["response"]["data"]["message_list"]:
contact_id = message["contact_id"]

Loading…
Cancel
Save