From 492ce346b2158076b1da1517b6d32e4ba58e8106 Mon Sep 17 00:00:00 2001 From: jvyden Date: Wed, 15 Jun 2022 17:08:51 -0400 Subject: [PATCH] Bump biography character limit to 512 --- .../Controllers/UserController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ProjectLighthouse.Servers.GameServer/Controllers/UserController.cs b/ProjectLighthouse.Servers.GameServer/Controllers/UserController.cs index f27e902d..d068b1da 100644 --- a/ProjectLighthouse.Servers.GameServer/Controllers/UserController.cs +++ b/ProjectLighthouse.Servers.GameServer/Controllers/UserController.cs @@ -99,7 +99,7 @@ public class UserController : ControllerBase if (update.Biography != null) { - if (update.Biography.Length > 100) return this.BadRequest(); + if (update.Biography.Length > 512) return this.BadRequest(); user.Biography = update.Biography; }