randydev commited on
Commit
ede3557
·
verified ·
1 Parent(s): b053d88

Update chatbot/plugins/chat.py

Browse files
Files changed (1) hide show
  1. 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.reply_text(
512
- "Are you sure you want to image this edit image?",
 
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