From 957c2b3bc1a936df52e0aa1b99279385231a824c Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Thu, 2 Nov 2023 21:33:21 +0100 Subject: [PATCH] Fixed invalid reference --- RNS/Transport.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RNS/Transport.py b/RNS/Transport.py index ef46463..4af6cf9 100755 --- a/RNS/Transport.py +++ b/RNS/Transport.py @@ -334,7 +334,7 @@ class Transport: if time.time() - last_path_request > Transport.PATH_REQUEST_MI: RNS.log("Trying to rediscover path for "+RNS.prettyhexrep(link.destination.hash)+" since an attempted link was never established", RNS.LOG_DEBUG) if not link.destination.hash in path_requests: - blocked_if = link_entry[4] + blocked_if = None path_requests[link.destination.hash] = blocked_if Transport.pending_links.remove(link)