Skip to content

Commit

Permalink
handle potentially abuse eval lengths
Browse files Browse the repository at this point in the history
  • Loading branch information
AbstractUmbra committed Oct 6, 2024
1 parent 3dd9195 commit 37acdd9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion modules/eval.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,13 @@ async def eval(
await ctx.message.add_reaction("\U00002705")

if len(output) > 1000:
codeblock = await self.bot.mb_client.create_paste(files=[mystbin.File(content=output, filename="eval.py")])
try:
codeblock = await self.bot.mb_client.create_paste(
files=[mystbin.File(content=output, filename="eval.py")]
)
except mystbin.APIException:
await ctx.send("Your output was too long to provide in any sensible manner.")
return

elif output:
codeblock = formatters.to_codeblock(output, escape_md=False)
Expand Down

0 comments on commit 37acdd9

Please sign in to comment.