From 570318cf3bfa742218fae21f014a2e23d865df00 Mon Sep 17 00:00:00 2001 From: hang <872297557@qq.com> Date: Thu, 5 Feb 2026 23:28:48 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=A0=86=E6=A0=88=E9=94=99?= =?UTF-8?q?=E8=AF=AF=E9=95=BF=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- IRaCIS.Core.Application/Helper/OtherTool/WeComNotifier.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IRaCIS.Core.Application/Helper/OtherTool/WeComNotifier.cs b/IRaCIS.Core.Application/Helper/OtherTool/WeComNotifier.cs index 71395135f..641b117b1 100644 --- a/IRaCIS.Core.Application/Helper/OtherTool/WeComNotifier.cs +++ b/IRaCIS.Core.Application/Helper/OtherTool/WeComNotifier.cs @@ -28,8 +28,8 @@ public static class WeComNotifier var stack = ex.StackTrace ?? "无堆栈信息"; stack = stack.Replace("\n", "\n> "); // 每行变成引用,防止markdown断裂 - if (stack.Length > 1000) - stack = stack.Substring(0, 1000) + "...(已截断)"; + if (stack.Length > 1200) + stack = stack.Substring(0, 1200) + "...(已截断)"; string atText = ""; if (atUsers != null && atUsers.Any())