diff options
| author | Rapptz <[email protected]> | 2018-11-26 02:04:01 -0500 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2018-11-26 02:04:01 -0500 |
| commit | e6a8eb1a7c2e104066626c7a5126acfeddf28d06 (patch) | |
| tree | 5607d69925a6b6151e1dc814df2c1d2735218eab | |
| parent | Support discordapp.com invite URLs. (diff) | |
| download | discord.py-e6a8eb1a7c2e104066626c7a5126acfeddf28d06.tar.xz discord.py-e6a8eb1a7c2e104066626c7a5126acfeddf28d06.zip | |
Fix bug in Guild.splash_url
| -rw-r--r-- | discord/guild.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/guild.py b/discord/guild.py index 0e4c3099..37d4853a 100644 --- a/discord/guild.py +++ b/discord/guild.py @@ -441,7 +441,7 @@ class Guild(Hashable): @property def splash_url(self): """Returns the URL version of the guild's invite splash. Returns an empty string if it has no splash.""" - return self.icon_url_as() + return self.splash_url_as() def splash_url_as(self, *, format='webp', size=2048): """Returns a friendly URL version of the guild's invite splash. Returns an empty string if it has no splash. |