From 438369584689a007ead5abfc47e6c9b1c5760983 Mon Sep 17 00:00:00 2001 From: Lncvrt Date: Sat, 31 Jan 2026 01:47:34 -0700 Subject: [PATCH] Fix this --- src/routes/berrydash/icon-marketplace/upload/post.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/berrydash/icon-marketplace/upload/post.ts b/src/routes/berrydash/icon-marketplace/upload/post.ts index 03e2b1f..428b822 100644 --- a/src/routes/berrydash/icon-marketplace/upload/post.ts +++ b/src/routes/berrydash/icon-marketplace/upload/post.ts @@ -104,7 +104,7 @@ export async function handler (context: Context) { connection1, 'Price cannot be be under 10 coins' ) - if (!/^[a-zA-Z0-9 ]+$/.test(body.name)) + if (!/^[a-zA-Z0-9 ]+$/.test(body.name) || body.name.length > 16) return exitBecauseInvalid(connection0, connection1, 'Name is invalid') const decoded = Buffer.from(body.fileContent, 'base64') if (!decoded)