One-Nub
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
8 deletions
-
disco/types/user.py
|
|
@ -22,17 +22,11 @@ class User(SlottedModel, with_equality('id'), with_hash('id')): |
|
|
|
|
|
|
|
presence = Field(None) |
|
|
|
|
|
|
|
def get_avatar_url(self, fmt=None, force_fmt=True, size=1024): |
|
|
|
def get_avatar_url(self, fmt=None, size=1024): |
|
|
|
if not self.avatar: |
|
|
|
return 'https://cdn.discordapp.com/embed/avatars/{}.png'.format(self.default_avatar.value) |
|
|
|
if fmt is not None: |
|
|
|
if force_fmt is False: |
|
|
|
if self.avatar.startswith('a_'): |
|
|
|
return 'https://cdn.discordapp.com/avatars/{}/{}.gif?size={}'.format(self.id, self.avatar, size) |
|
|
|
else: |
|
|
|
return 'https://cdn.discordapp.com/avatars/{}/{}.{}?size={}'.format(self.id, self.avatar, fmt, size) |
|
|
|
else: |
|
|
|
return 'https://cdn.discordapp.com/avatars/{}/{}.{}?size={}'.format(self.id, self.avatar, fmt, size) |
|
|
|
return 'https://cdn.discordapp.com/avatars/{}/{}.{}?size={}'.format(self.id, self.avatar, fmt, size) |
|
|
|
if self.avatar.startswith('a_'): |
|
|
|
return 'https://cdn.discordapp.com/avatars/{}/{}.gif?size={}'.format(self.id, self.avatar, size) |
|
|
|
else: |
|
|
|