Update chatbot/plugins/chat.py
Browse files- chatbot/plugins/chat.py +1 -1
chatbot/plugins/chat.py
CHANGED
@@ -126,7 +126,7 @@ async def chatbot_talk(client: Client, message: Message):
|
|
126 |
f"**Chat Title**: `{message.chat.title if message.chat else None}`\n"
|
127 |
f"**Chat ID**: `{message.chat.id if message.chat else None}`\n"
|
128 |
)
|
129 |
-
response_log = send_log(user_detail)
|
130 |
if response_log is None:
|
131 |
LOGS.warning("Error response")
|
132 |
LOGS.info(response_log)
|
|
|
126 |
f"**Chat Title**: `{message.chat.title if message.chat else None}`\n"
|
127 |
f"**Chat ID**: `{message.chat.id if message.chat else None}`\n"
|
128 |
)
|
129 |
+
response_log = await send_log(user_detail)
|
130 |
if response_log is None:
|
131 |
LOGS.warning("Error response")
|
132 |
LOGS.info(response_log)
|