increase max paste size 510MB

This commit is contained in:
Nexus 2024-04-16 00:43:40 +01:00
parent 73d0f204dc
commit 200d108bdf
Signed by: nex
GPG key ID: 0FA334385D0B689F

View file

@ -188,7 +188,7 @@ class AutoResponder(commands.Cog):
_p,
_p.stat().st_size / 1024 / 1024
)
if _p.stat().st_size <= 490 * 1024 * 1024:
if _p.stat().st_size <= 510 * 1024 * 1024:
file.fp.seek(0)
self.log.info("Trying to upload file to pastebin.")
async with httpx.AsyncClient() as client: