From d787c728127ffb2c847ecda4432a4bbc4ede01cd Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Tue, 14 Oct 2025 13:32:22 -0700 Subject: [PATCH] Update radio.py --- modules/radio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/radio.py b/modules/radio.py index 264968f..6b7dc53 100644 --- a/modules/radio.py +++ b/modules/radio.py @@ -150,7 +150,7 @@ def checkVoxTrapWords(text): for word in new_words: if word in botMethods: logger.info(f"RadioMon: VOX action '{word}' with '{new_text}'") - return botMethods[word]() + return botMethods[word](None, None, None, vox=True) logger.debug(f"RadioMon: VOX returning text after trap word '{trap_lower}': '{new_text}'") return new_text logger.debug(f"RadioMon: VOX no trap word found in: '{text}'")