From cc7e3b1a97c2e420032708e21f2ac2fce725901c Mon Sep 17 00:00:00 2001 From: joe ketcham Date: Sun, 28 Jul 2024 12:17:52 -0400 Subject: [PATCH] [BUGFIX] Missing else statement to reset user state and respond with menu if user sends h or help multiple times or from any sub menu --- message_processing.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/message_processing.py b/message_processing.py index e9b7440..0d504ca 100644 --- a/message_processing.py +++ b/message_processing.py @@ -168,6 +168,8 @@ def process_message(sender_id, message, interface, is_sync_message=False): handle_js8call_steps(sender_id, message, step, interface, state) elif command == 'GROUP_MESSAGES': handle_group_message_selection(sender_id, message, step, state, interface) + else: + handle_help_command(sender_id, interface) else: handle_help_command(sender_id, interface)