From df80ae9edcd6b38c5541bd4eabe7358c885f37d4 Mon Sep 17 00:00:00 2001 From: zhaoyingbo Date: Tue, 29 Oct 2024 07:14:32 +0000 Subject: [PATCH] =?UTF-8?q?feat(event-proxy):=20event=E8=BD=AC=E5=8F=91?= =?UTF-8?q?=E6=96=B0=E5=A2=9Eprev=E7=8E=AF=E5=A2=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- services/attach/index.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/services/attach/index.ts b/services/attach/index.ts index 15fb8c4..d423b13 100644 --- a/services/attach/index.ts +++ b/services/attach/index.ts @@ -28,7 +28,11 @@ class AttachService extends NetToolBase { * @returns {Promise} 返回空。 */ async proxyMiChatEvent(body: LarkEvent.Data) { - const hostList = ["michat-staging.ai.srv", "michat.ai.srv"] + const hostList = [ + "michat-staging.ai.srv", + "michat-preview.ai.srv", + "michat.ai.srv", + ] const path = "/api/v1/bypass/robot_event_callback" for (const host of hostList) { const URL = `http://${host}${path}`