From 4cab3d1afe4400016703ce0a8721f42823ac4e40 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Fri, 9 Nov 2018 14:54:53 +0300 Subject: CommandsManager: 4096 character limit --- src/main/java/com/juick/server/api/Post.java | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'src/main/java/com/juick/server/api') diff --git a/src/main/java/com/juick/server/api/Post.java b/src/main/java/com/juick/server/api/Post.java index 303ff109..2c7346b3 100644 --- a/src/main/java/com/juick/server/api/Post.java +++ b/src/main/java/com/juick/server/api/Post.java @@ -70,11 +70,8 @@ public class Post { @RequestParam(required = false) MultipartFile attach) throws Exception { User visitor = UserUtils.getCurrentUser(); - if (visitor.isAnonymous()) + if (visitor.isAnonymous()) { throw new HttpForbiddenException(); - - if (body.length() > 4096) { - throw new HttpBadRequestException(); } body = body.replace("\r", StringUtils.EMPTY); @@ -129,10 +126,6 @@ public class Post { throw new HttpNotFoundException(); } } - - if (body.length() > 4096) { - throw new HttpBadRequestException(); - } body = body.replace("\r", StringUtils.EMPTY); if ((msg.ReadOnly && msg.getUser().getUid() != vuid) || userService.isInBLAny(msg.getUser().getUid(), vuid) -- cgit v1.2.3