Browse Source
Merge pull request #5 from elderlabs/patch-1
Patch get_icon_url
pull/143/head
Dooley_labs
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
2 deletions
-
disco/types/guild.py
|
|
@ -528,9 +528,9 @@ class Guild(SlottedModel, Permissible): |
|
|
|
if fmt is not None: |
|
|
|
return 'https://cdn.discordapp.com/icons/{}/{}.{}?size={}'.format(self.id, self.icon, fmt, size) |
|
|
|
if self.icon.startswith('a_'): |
|
|
|
return 'https://cdn.discordapp.com/avatars/{}/{}.gif?size={}'.format(self.id, self.icon, size) |
|
|
|
return 'https://cdn.discordapp.com/icons/{}/{}.gif?size={}'.format(self.id, self.icon, size) |
|
|
|
else: |
|
|
|
return 'https://cdn.discordapp.com/avatars/{}/{}.webp?size={}'.format(self.id, self.icon, size) |
|
|
|
return 'https://cdn.discordapp.com/icons/{}/{}.webp?size={}'.format(self.id, self.icon, size) |
|
|
|
|
|
|
|
def get_splash_url(self, fmt='webp', size=1024): |
|
|
|
if not self.splash: |
|
|
|