Browse Source

Support webp in _get_mime_type_for_image

untested
pull/1739/head
khazhyk 6 years ago
committed by Rapptz
parent
commit
c30b016bb5
  1. 2
      discord/utils.py

2
discord/utils.py

@ -252,6 +252,8 @@ def _get_mime_type_for_image(data):
return 'image/jpeg'
elif data.startswith(b'\x47\x49\x46\x38\x37\x61') or data.startswith(b'\x47\x49\x46\x38\x39\x61'):
return 'image/gif'
elif data.startswith(b'RIFF') and data[8:12] == b'WEBP':
return 'image/webp'
else:
raise InvalidArgument('Unsupported image type given')

Loading…
Cancel
Save