Skip to content

Commit fc313aa

Browse files
handle potentially abuse eval lengths (#69)
1 parent f471891 commit fc313aa

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

modules/eval.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,13 @@ async def eval(
106106
await ctx.message.add_reaction("\U00002705")
107107

108108
if len(output) > 1000:
109-
codeblock = await self.bot.mb_client.create_paste(files=[mystbin.File(content=output, filename="eval.py")])
109+
try:
110+
codeblock = await self.bot.mb_client.create_paste(
111+
files=[mystbin.File(content=output, filename="eval.py")]
112+
)
113+
except mystbin.APIException:
114+
await ctx.send("Your output was too long to provide in any sensible manner.")
115+
return
110116

111117
elif output:
112118
codeblock = formatters.to_codeblock(output, escape_md=False)

0 commit comments

Comments
 (0)