happy easter!

This commit is contained in:
bakatrouble 2019-04-28 14:40:19 +03:00
parent b625fbb3a9
commit 4426a891ef

View File

@ -268,6 +268,8 @@ def _process_message(bot: Bot, m: Message):
reply_to_message_id=reply_to_message_id, parse_mode='html') reply_to_message_id=reply_to_message_id, parse_mode='html')
elif hasattr(m, 'document') and m.document: elif hasattr(m, 'document') and m.document:
d = m.document d = m.document
if d.mime_type == 'video/mp4':
d.file_id = 'CgADAgAD-wIAAsWRKUpVBG3sEsYrGgI'
r = bot.send_document(uid, d.file_id, d.file_name, caption, reply_to_message_id=reply_to_message_id, r = bot.send_document(uid, d.file_id, d.file_name, caption, reply_to_message_id=reply_to_message_id,
parse_mode='html') parse_mode='html')
elif hasattr(m, 'photo') and m.photo: elif hasattr(m, 'photo') and m.photo: