Updated version

This commit is contained in:
Mark Qvist 2026-04-21 10:50:34 +02:00
commit 41b75737e9
2 changed files with 3 additions and 3 deletions

View file

@ -756,13 +756,13 @@ class LXMessage:
content_bytes = unpacked_payload[2]
fields = unpacked_payload[3]
destination_identity = RNS.Identity.recall(destination_hash)
destination_identity = RNS.Identity.recall(destination_hash, _no_use=True)
if destination_identity != None:
destination = RNS.Destination(destination_identity, RNS.Destination.OUT, RNS.Destination.SINGLE, APP_NAME, "delivery")
else:
destination = None
source_identity = RNS.Identity.recall(source_hash)
source_identity = RNS.Identity.recall(source_hash, _no_use=True)
if source_identity != None:
source = RNS.Destination(source_identity, RNS.Destination.OUT, RNS.Destination.SINGLE, APP_NAME, "delivery")
else:

View file

@ -1 +1 @@
__version__ = "0.9.4"
__version__ = "0.9.5"