Revert "Ensure gif avatar urls end in .gif"

This reverts commit 456390f417e63126b08ac52fa8ee49ca68cefed8.

This commit isn't needed anymore - the image proxy now properly
handles gifs that do not end in .gif
This commit is contained in:
khazhyk 2018-07-15 21:48:50 -07:00 committed by Rapptz
parent 2321ae8d97
commit 2c7a855e11

View File

@ -155,10 +155,7 @@ class BaseUser(_BaseUser):
else: else:
format = static_format format = static_format
# Discord has trouble animating gifs if the url does not end in `.gif` return 'https://cdn.discordapp.com/avatars/{0.id}/{0.avatar}.{1}?size={2}'.format(self, format, size)
gif_fix = '&_=.gif' if format == 'gif' else ''
return 'https://cdn.discordapp.com/avatars/{0.id}/{0.avatar}.{1}?size={2}{3}'.format(self, format, size, gif_fix)
@property @property
def default_avatar(self): def default_avatar(self):