Update chatbot/plugins/chat.py
Browse files- chatbot/plugins/chat.py +3 -2
chatbot/plugins/chat.py
CHANGED
@@ -508,8 +508,9 @@ async def chatbot_talk(client: Client, message: Message):
|
|
508 |
)
|
509 |
]
|
510 |
]
|
511 |
-
await message.
|
512 |
-
|
|
|
513 |
reply_markup=InlineKeyboardMarkup(buttons)
|
514 |
)
|
515 |
return
|
|
|
508 |
)
|
509 |
]
|
510 |
]
|
511 |
+
await message.reply_photo(
|
512 |
+
message.photo.file_id,
|
513 |
+
caption="Are you sure you want to image this edit image?",
|
514 |
reply_markup=InlineKeyboardMarkup(buttons)
|
515 |
)
|
516 |
return
|