Compare commits

..

3 commits

Author SHA1 Message Date
Ricardo Dantas 8db3b7c02e
Merge 9ece3719c7 into 69d74e33dd 2025-02-23 19:19:33 +00:00
TC² 69d74e33dd
Merge pull request #116 from mdarty/main
Added missing Parenthisis
2025-02-17 08:21:17 -05:00
Matthew Daugherty 16660e1f49
Added missing Parenthisis 2025-02-16 17:16:04 -06:00

View file

@ -382,7 +382,7 @@ def handle_channel_directory_steps(sender_id, message, step, state, interface):
else:
send_message("No channels available in the directory.", sender_id, interface)
handle_channel_directory_command(sender_id, interface)
elif choice.lower == 'p':
elif choice.lower() == 'p':
send_message("Name your channel for the directory:", sender_id, interface)
update_user_state(sender_id, {'command': 'CHANNEL_DIRECTORY', 'step': 3})