-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#98 Change mode added #110
Conversation
bot.py
Outdated
@@ -25,6 +25,10 @@ | |||
|
|||
PREPARE, TYPING, SELECT_YES_NO, MENU = "PREPARE", "TYPING", "SELECT_YES_NO", "MENU" | |||
|
|||
# MODE = True - bot receive text messages - default | |||
# MODE = False - voice | |||
MODE = True |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Выносим MODE в настройки конкретного пользователя, а не всей системы в целом
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
А эта константа точно используется?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
это я случайно из старой версии файла подгрузила. Я пыталась исправить то, что бот зависает на этапе "Ты выбрал фокусом этой недели работу с усталостью. ...". Раньше этой проблемы не было, и тут просто скорее всего ошибка даже не в моем коде. Выдает ошибку на этапе script_engine. Может Вы сможете что-то подсказать
wrapper.py
Outdated
update.message.reply_text('Error!') | ||
|
||
else: | ||
update.effective_user.send_message(text=text, reply_markup=reply_markup) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Часть нужной логики из dialog_Wrapper отсутствует в dialog. Нужно ее туда аккуратно перенести, dialog_Wrapper удалить
Общение с ботом застревает на этапе |
No description provided.