From 833c0888e6bcff84e45f511445a0c90e323b1828 Mon Sep 17 00:00:00 2001 From: liamcottle Date: Sun, 2 Jun 2024 12:01:51 +1200 Subject: [PATCH] set default auto announce interval to zero --- web.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web.py b/web.py index cffdd9a..24aa032 100644 --- a/web.py +++ b/web.py @@ -1666,7 +1666,7 @@ class Config: # all possible config items display_name = StringConfig("display_name", "Anonymous Peer") auto_announce_enabled = BoolConfig("auto_announce_enabled", False) - auto_announce_interval_seconds = IntConfig("auto_announce_interval_seconds", 3600) + auto_announce_interval_seconds = IntConfig("auto_announce_interval_seconds", 0) last_announced_at = IntConfig("last_announced_at", None)