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";