Fixed node announce interval

This commit is contained in:
Mark Qvist 2021-10-09 13:41:48 +02:00
parent 5f651f8786
commit 2ec674fbf3
2 changed files with 5 additions and 1 deletions

View File

@ -31,6 +31,10 @@ class Node:
if self.app.node_announce_at_start:
self.announce()
job_thread = threading.Thread(target=self.__jobs)
job_thread.setDaemon(True)
job_thread.start()
def register_pages(self):
self.servedpages = []

View File

@ -1 +1 @@
__version__ = "0.1.2"
__version__ = "0.1.3"