Fix sending albums with bot file IDs

This commit is contained in:
Lonami Exo
2019-02-25 18:23:39 +01:00
parent 70b08c4952
commit 8e36c0002b
2 changed files with 16 additions and 9 deletions

View File

@@ -662,7 +662,11 @@ def is_image(file):
"""
Returns ``True`` if the file extension looks like an image file to Telegram.
"""
return re.match(r'\.(png|jpe?g)', _get_extension(file), re.IGNORECASE)
match = re.match(r'\.(png|jpe?g)', _get_extension(file), re.IGNORECASE)
if match:
return True
else:
return isinstance(resolve_bot_file_id(file), types.Photo)
def is_gif(file):