Update chatbot/plugins/chat.py
Browse files- chatbot/plugins/chat.py +2 -2
chatbot/plugins/chat.py
CHANGED
@@ -1473,11 +1473,11 @@ async def chatbot_talk(client: Client, message: Message):
|
|
1473 |
if not check_is_system:
|
1474 |
await db.backup_chatbot.update_one(
|
1475 |
{"user_id": message.from_user.id},
|
1476 |
-
{"$set": {"is_system":
|
1477 |
upsert=True
|
1478 |
)
|
1479 |
await message.reply_text(
|
1480 |
-
"Ok Updated
|
1481 |
)
|
1482 |
return
|
1483 |
|
|
|
1473 |
if not check_is_system:
|
1474 |
await db.backup_chatbot.update_one(
|
1475 |
{"user_id": message.from_user.id},
|
1476 |
+
{"$set": {"is_system": False}},
|
1477 |
upsert=True
|
1478 |
)
|
1479 |
await message.reply_text(
|
1480 |
+
"Ok Updated Now Type anything to begin."
|
1481 |
)
|
1482 |
return
|
1483 |
|