Allow photo replies to text message updates

This commit is contained in:
Davte 2019-07-03 17:29:30 +02:00
parent 967627c4a2
commit b1ac8d3d40

View File

@ -420,7 +420,10 @@ class Bot(TelegramBot):
if type(reply) is str:
reply = dict(text=reply)
try:
return await self.send_message(update=update, **reply)
if 'text' in reply:
return await self.send_message(update=update, **reply)
if 'photo' in reply:
return await self.send_photo(update=update, **reply)
except Exception as e:
logging.error(
f"Failed to handle text message:\n{e}",