From 9ce212e92007d99f3f6dba619b021bf4505002d4 Mon Sep 17 00:00:00 2001 From: invin_huo Date: Sat, 25 Oct 2025 15:16:56 +0800 Subject: [PATCH] =?UTF-8?q?=E7=B2=98=E8=B4=B4=E6=A3=80=E6=B5=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Html/apps/services/backboard_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Html/apps/services/backboard_service.py b/Html/apps/services/backboard_service.py index 1f670cc..7d4cb57 100644 --- a/Html/apps/services/backboard_service.py +++ b/Html/apps/services/backboard_service.py @@ -57,7 +57,7 @@ def realtime_response(config: dict, realtime_action: dict) -> None: # emit('paste_detected', paste_data) #判断一下,如果粘帖内容过多就发送,后期可加入更多条件判断 - if bb.pasted_content and len(bb.pasted_content) > 300: + if bb.pasted_content and len(bb.pasted_content) > 250: chatmanager.ase_client.send("pasted_detected_in", {"file_path": file_path, "content": bb.pasted_content})