From 41b75737e9eac5f37c802427dea98fb13851bbdf Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Tue, 21 Apr 2026 10:50:34 +0200 Subject: [PATCH] Updated version --- LXMF/LXMessage.py | 4 ++-- LXMF/_version.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/LXMF/LXMessage.py b/LXMF/LXMessage.py index 37186b0..f85f3b8 100644 --- a/LXMF/LXMessage.py +++ b/LXMF/LXMessage.py @@ -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: diff --git a/LXMF/_version.py b/LXMF/_version.py index e94731c..f8c6ac7 100644 --- a/LXMF/_version.py +++ b/LXMF/_version.py @@ -1 +1 @@ -__version__ = "0.9.4" +__version__ = "0.9.5"