Send commands opportunistically if ratchets are available

This commit is contained in:
Mark Qvist 2024-09-16 20:25:32 +02:00
parent 4fddc45dbc
commit 69ab910590
1 changed files with 5 additions and 1 deletions

View File

@ -4146,6 +4146,10 @@ class SidebandCore():
if propagation:
desired_method = LXMF.LXMessage.PROPAGATED
else:
if not self.message_router.delivery_link_available(destination_hash) and RNS.Identity.current_ratchet_id(destination_hash) != None:
RNS.log(f"Have ratchet for {RNS.prettyhexrep(destination_hash)}, requesting opportunistic delivery of command", RNS.LOG_DEBUG)
desired_method = LXMF.LXMessage.OPPORTUNISTIC
else:
desired_method = LXMF.LXMessage.DIRECT