From ef9231f51f98504a9cc066b73e2e68882da0bf84 Mon Sep 17 00:00:00 2001 From: Nestpebble <116762865+Nestpebble@users.noreply.github.com> Date: Mon, 16 Sep 2024 01:20:11 +0100 Subject: [PATCH] Update settings.py --- modules/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/settings.py b/modules/settings.py index 8bf4ae6..3366d82 100644 --- a/modules/settings.py +++ b/modules/settings.py @@ -133,8 +133,8 @@ try: signalCooldown = config['radioMon'].getint('signalCooldown', 5) # default 1 second signalCycleLimit = config['radioMon'].getint('signalCycleLimit', 5) # default 5 cycles, used with SIGNAL_COOLDOWN - responseDelay = config['messagingSettings'].getint('responseDelay', 0.7) # default 0.7 - splitDelay = config['messagingSettings'].getint('splitDelay', 0) # default 0 + responseDelay = config['messagingSettings'].getfloat('responseDelay', 0.7) # default 0.7 + splitDelay = config['messagingSettings'].getfloat('splitDelay', 0) # default 0 MESSAGE_CHUNK_SIZE = config['messagingSettings'].getint('MESSAGE_CHUNK_SIZE', 160) # default 160 except KeyError as e: