mirror of
https://github.com/markqvist/NomadNet.git
synced 2025-06-06 21:49:09 -04:00
Fixed node announce interval
This commit is contained in:
parent
5f651f8786
commit
2ec674fbf3
2 changed files with 5 additions and 1 deletions
|
@ -31,6 +31,10 @@ class Node:
|
||||||
if self.app.node_announce_at_start:
|
if self.app.node_announce_at_start:
|
||||||
self.announce()
|
self.announce()
|
||||||
|
|
||||||
|
job_thread = threading.Thread(target=self.__jobs)
|
||||||
|
job_thread.setDaemon(True)
|
||||||
|
job_thread.start()
|
||||||
|
|
||||||
|
|
||||||
def register_pages(self):
|
def register_pages(self):
|
||||||
self.servedpages = []
|
self.servedpages = []
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
__version__ = "0.1.2"
|
__version__ = "0.1.3"
|
Loading…
Add table
Add a link
Reference in a new issue