mirror of
https://github.com/markqvist/NomadNet.git
synced 2025-12-17 23:04:24 +01:00
Fixed missing attribute check
This commit is contained in:
@@ -212,7 +212,7 @@ class Directory:
|
|||||||
while len(self.announce_stream) > Directory.ANNOUNCE_STREAM_MAXLENGTH:
|
while len(self.announce_stream) > Directory.ANNOUNCE_STREAM_MAXLENGTH:
|
||||||
self.announce_stream.pop()
|
self.announce_stream.pop()
|
||||||
|
|
||||||
if hasattr(self.app.ui, "main_display"):
|
if hasattr(self.app, "ui") and hasattr(self.app.ui, "main_display"):
|
||||||
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):
|
def remove_announce_with_timestamp(self, timestamp):
|
||||||
|
|||||||
Reference in New Issue
Block a user