fix(backup): only try to access message attachments if the message has any
Some checks failed
Actions / Lint Code (Pylint) (pull_request) Failing after 15s
Actions / Build Documentation (MkDocs) (pull_request) Successful in 10s

This commit is contained in:
Seaswimmer 2024-01-31 12:37:27 -05:00
parent 35ffec9c3f
commit 045d51bc23
Signed by: cswimr
GPG key ID: B8953EC01E5C4063

View file

@ -61,8 +61,9 @@ class Backup(commands.Cog):
async def backup_import(self, ctx: commands.Context, json: str = None):
"""Import your installed repositories and cogs from an export."""
if json is None:
json = await ctx.message.attachments[0].read()
if json is None:
if ctx.message.attachments is not None:
json = await ctx.message.attachments[0].read()
else:
await ctx.send(error("Please provide a valid JSON export."))
return