From 9d38347f17f37b7146ec850ab385bfd69adb0c6e Mon Sep 17 00:00:00 2001 From: Juraj Bednar Date: Mon, 8 Jan 2024 18:07:14 +0100 Subject: [PATCH] Print LXMF delivery destination, not RNS ID This is the correct hash you write messages to. --- EchoBot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EchoBot.py b/EchoBot.py index 2b2032b..0b306dc 100644 --- a/EchoBot.py +++ b/EchoBot.py @@ -120,7 +120,7 @@ def LXMDelivery(lxm): local_lxmf_destination = lxm_router.register_delivery_identity(ID,display_name=namestring) # Print hash to terminal -print(RNS.prettyhexrep(ID.hash)) +print(RNS.prettyhexrep(local_lxmf_destination.hash)) # Main Loop Definition