messages are now wantAck=True to improve reliability

This commit is contained in:
nagumii 2024-09-24 15:12:32 +03:00
parent c6784290b5
commit 880f93d3ad

View file

@ -20,7 +20,7 @@ def send_message(message, destination, interface):
d = interface.sendText(
text=chunk,
destinationId=destination,
wantAck=False, #should this be true?
wantAck=True,
wantResponse=False
)
destid = get_node_id_from_num(destination, interface)