Updated version
This commit is contained in:
parent
72932eea28
commit
41b75737e9
2 changed files with 3 additions and 3 deletions
|
|
@ -756,13 +756,13 @@ class LXMessage:
|
||||||
content_bytes = unpacked_payload[2]
|
content_bytes = unpacked_payload[2]
|
||||||
fields = unpacked_payload[3]
|
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:
|
if destination_identity != None:
|
||||||
destination = RNS.Destination(destination_identity, RNS.Destination.OUT, RNS.Destination.SINGLE, APP_NAME, "delivery")
|
destination = RNS.Destination(destination_identity, RNS.Destination.OUT, RNS.Destination.SINGLE, APP_NAME, "delivery")
|
||||||
else:
|
else:
|
||||||
destination = None
|
destination = None
|
||||||
|
|
||||||
source_identity = RNS.Identity.recall(source_hash)
|
source_identity = RNS.Identity.recall(source_hash, _no_use=True)
|
||||||
if source_identity != None:
|
if source_identity != None:
|
||||||
source = RNS.Destination(source_identity, RNS.Destination.OUT, RNS.Destination.SINGLE, APP_NAME, "delivery")
|
source = RNS.Destination(source_identity, RNS.Destination.OUT, RNS.Destination.SINGLE, APP_NAME, "delivery")
|
||||||
else:
|
else:
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
__version__ = "0.9.4"
|
__version__ = "0.9.5"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue