From 06d495c026ae2a93e37eb514dde0830ceb1401e4 Mon Sep 17 00:00:00 2001 From: DevilXD <4180725+DevilXD@users.noreply.github.com> Date: Sun, 15 Sep 2024 16:28:01 +0200 Subject: [PATCH] ONLINE_DELAY time reduction: 120 -> 20 --- constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/constants.py b/constants.py index 8dea3d2..827cd30 100644 --- a/constants.py +++ b/constants.py @@ -117,7 +117,7 @@ DEFAULT_LANG = "English" # Intervals and Delays PING_INTERVAL = timedelta(minutes=3) PING_TIMEOUT = timedelta(seconds=10) -ONLINE_DELAY = timedelta(seconds=120) +ONLINE_DELAY = timedelta(seconds=20) WATCH_INTERVAL = timedelta(seconds=20) # Strings WINDOW_TITLE = f"Twitch Drops Miner v{__version__} (by DevilXD)"