mirror of
https://github.com/TheCommsChannel/TC2-BBS-mesh.git
synced 2024-11-09 22:24:06 -08:00
[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
This commit is contained in:
parent
774478fe25
commit
cc7e3b1a97
|
@ -170,6 +170,8 @@ def process_message(sender_id, message, interface, is_sync_message=False):
|
||||||
handle_group_message_selection(sender_id, message, step, state, interface)
|
handle_group_message_selection(sender_id, message, step, state, interface)
|
||||||
else:
|
else:
|
||||||
handle_help_command(sender_id, interface)
|
handle_help_command(sender_id, interface)
|
||||||
|
else:
|
||||||
|
handle_help_command(sender_id, interface)
|
||||||
|
|
||||||
|
|
||||||
def on_receive(packet, interface):
|
def on_receive(packet, interface):
|
||||||
|
|
Loading…
Reference in a new issue