diff options
author | 2021-10-17 15:06:08 +0100 | |
---|---|---|
committer | 2021-10-17 15:06:08 +0100 | |
commit | a91b51dedf281bbc0c5ea0fae9cc2c150c4afb56 (patch) | |
tree | e180dd65e3639b0d4800115645cf83032d2909cd | |
parent | Merge pull request #1844 from python-discord/new-appeals-process (diff) |
Use MISSING sentinal rather than None for no files
Fixes #1884
Fixes BOT-1NY
Discord.py 2.0 changed how this works, webhooks now look for the MISSING sentinal, rather than None to determine whether files are being passed.
This was updated in this commit: https://github.com/Rapptz/discord.py/commit/a6f7213c89e9d592c69ea3c631b0cb2bdab19577
-rw-r--r-- | bot/exts/moderation/incidents.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/moderation/incidents.py b/bot/exts/moderation/incidents.py index 097fa36f1..e265e29d3 100644 --- a/bot/exts/moderation/incidents.py +++ b/bot/exts/moderation/incidents.py @@ -105,7 +105,7 @@ async def make_embed(incident: discord.Message, outcome: Signal, actioned_by: di else: embed.set_author(name="[Failed to relay attachment]", url=attachment.proxy_url) # Embed links the file else: - file = None + file = discord.utils.MISSING return embed, file |