Skip to content

Commit

Permalink
patch: Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Simatwa committed May 4, 2024
1 parent 8a61bea commit 7a765ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytgpt_bot/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ async def check_current_settings(message: telebot.types.Message):
chat = User(message).chat
current_user_settings = (
f"Is Active : `{chat.is_active}`\n"
f"Chat Length : `{len(chat.history)}`\n"
f"Chat Length : `{len(chat.history) if chat.history else 0}`\n"
f"Speech Voice : `{chat.voice}`\n"
f"Chat Provider : `{chat.provider}`\n"
f"Chat Intro : `{chat.intro}`"
Expand Down

0 comments on commit 7a765ec

Please # to comment.