Spaces:
Running
Running
Update chatbot/plugins/chat.py
Browse files- chatbot/plugins/chat.py +1 -1
chatbot/plugins/chat.py
CHANGED
@@ -132,7 +132,7 @@ async def chatbot_talk(client: Client, message: Message):
|
|
132 |
return await ai_reply.edit_text(f"Error: {e}")
|
133 |
|
134 |
if message.document:
|
135 |
-
is_check_plan = await db.
|
136 |
if not is_check_plan:
|
137 |
return await message.reply_text("Only plan gemini")
|
138 |
|
|
|
132 |
return await ai_reply.edit_text(f"Error: {e}")
|
133 |
|
134 |
if message.document:
|
135 |
+
is_check_plan = await db.is_gemini_plan(user_id=message.from_user.id)
|
136 |
if not is_check_plan:
|
137 |
return await message.reply_text("Only plan gemini")
|
138 |
|