mirror of
https://github.com/markqvist/Reticulum.git
synced 2025-11-08 01:42:55 -05:00
Ensure default destination app data can be generated and sent even on first system-internal discovery announce
This commit is contained in:
parent
41ad089ff7
commit
56848cdb63
1 changed files with 4 additions and 1 deletions
|
|
@ -2133,7 +2133,10 @@ class Transport:
|
|||
|
||||
if Transport.owner.is_connected_to_shared_instance:
|
||||
if destination.type == RNS.Destination.SINGLE:
|
||||
destination.announce(path_response=True)
|
||||
def job():
|
||||
time.sleep(0.25)
|
||||
destination.announce(path_response=True)
|
||||
threading.Thread(target=job, daemon=True).start()
|
||||
|
||||
@staticmethod
|
||||
def deregister_destination(destination):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue