From a0b63c7888bd089befd05072292e6d9ab8975c32 Mon Sep 17 00:00:00 2001 From: lorretheboy Date: Tue, 2 Sep 2025 21:18:17 +0800 Subject: [PATCH 1/3] fix: match the message limit with BE --- src/CONST/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CONST/index.ts b/src/CONST/index.ts index 8b1046994725..c9c6362f9890 100755 --- a/src/CONST/index.ts +++ b/src/CONST/index.ts @@ -3703,7 +3703,7 @@ const CONST = { }, // Auth limit is 60k for the column but we store edits and other metadata along the html so let's use a lower limit to accommodate for it. - MAX_COMMENT_LENGTH: 10000, + MAX_COMMENT_LENGTH: 15000, // Use the same value as MAX_COMMENT_LENGTH to ensure the entire comment is parsed. Note that applying markup is very resource-consuming. MAX_MARKUP_LENGTH: 10000, From a643a8669f2c993641833481c4158bfd44144712 Mon Sep 17 00:00:00 2001 From: lorretheboy Date: Tue, 2 Sep 2025 21:28:05 +0800 Subject: [PATCH 2/3] chore: rerun workflow --- src/CONST/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/CONST/index.ts b/src/CONST/index.ts index c9c6362f9890..5966b2d7db2c 100755 --- a/src/CONST/index.ts +++ b/src/CONST/index.ts @@ -3705,6 +3705,7 @@ const CONST = { // Auth limit is 60k for the column but we store edits and other metadata along the html so let's use a lower limit to accommodate for it. MAX_COMMENT_LENGTH: 15000, + // Use the same value as MAX_COMMENT_LENGTH to ensure the entire comment is parsed. Note that applying markup is very resource-consuming. MAX_MARKUP_LENGTH: 10000, From 124e13fe59063acedfff9ed1e5d14c8939138318 Mon Sep 17 00:00:00 2001 From: lorretheboy Date: Tue, 2 Sep 2025 21:28:12 +0800 Subject: [PATCH 3/3] chore: rerun workflow --- src/CONST/index.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/CONST/index.ts b/src/CONST/index.ts index 5966b2d7db2c..c9c6362f9890 100755 --- a/src/CONST/index.ts +++ b/src/CONST/index.ts @@ -3705,7 +3705,6 @@ const CONST = { // Auth limit is 60k for the column but we store edits and other metadata along the html so let's use a lower limit to accommodate for it. MAX_COMMENT_LENGTH: 15000, - // Use the same value as MAX_COMMENT_LENGTH to ensure the entire comment is parsed. Note that applying markup is very resource-consuming. MAX_MARKUP_LENGTH: 10000,