randydev commited on
Commit
b13328d
·
verified ·
1 Parent(s): 9678ff1

Update chatbot/plugins/chat.py

Browse files
Files changed (1) hide show
  1. 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.gemini_plan(user_id=message.from_user.id)
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