From b82cfce3f89dba8332cd21d24411b737df39d7dd Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Sat, 25 Sep 2021 17:19:26 +0200 Subject: [PATCH] Announce stream update on unknown node announce --- nomadnet/Directory.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nomadnet/Directory.py b/nomadnet/Directory.py index c7f1741..6468f04 100644 --- a/nomadnet/Directory.py +++ b/nomadnet/Directory.py @@ -87,7 +87,8 @@ class Directory: if self.trust_level(associated_peer) == DirectoryEntry.TRUSTED: node_entry = DirectoryEntry(source_hash, display_name=app_data.decode("utf-8"), trust_level=DirectoryEntry.TRUSTED, hosts_node=True) self.remember(node_entry) - self.app.ui.main_display.sub_displays.network_display.directory_change_callback() + + self.app.ui.main_display.sub_displays.network_display.directory_change_callback() def remove_announce_with_timestamp(self, timestamp): selected_announce = None