From 38f2c632bb647475fe6ce443894b01eec71d7a6b Mon Sep 17 00:00:00 2001 From: ChrisChrome Date: Sun, 22 Dec 2024 17:41:19 -0700 Subject: [PATCH] Change max length on reasons --- routes/admin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/admin.js b/routes/admin.js index 694211b..f19a35f 100644 --- a/routes/admin.js +++ b/routes/admin.js @@ -176,7 +176,7 @@ router.post('/import', authenticate, upload.single('fileInput'), async (req, res const robloxId = line.split('x/')[0].split('/').pop(); let reasonLong = line.split('/profile ')[1]; if (reasonLong.length > 255) { - reasonLong = reasonLong.substring(0, 255); + reasonLong = reasonLong.substring(0, 2048); } const reasonShort = "Listed by MFD"; const moderator = "MFD";