mirror of
https://github.com/markqvist/LXMF.git
synced 2026-04-27 14:20:39 +00:00
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]
|
||||
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:
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
__version__ = "0.9.4"
|
||||
__version__ = "0.9.5"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue