From 922463398601b83cb159f49b388f2709a7cf3f77 Mon Sep 17 00:00:00 2001 From: AskaEth Date: Sun, 28 Jun 2026 12:15:44 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=AE=A1=E7=90=86=E5=91=98=E7=BE=A4?= =?UTF-8?q?=E8=81=8A=E6=B6=88=E6=81=AF=E4=B8=8D=E5=86=8D=E9=9D=99=E9=BB=98?= =?UTF-8?q?=EF=BC=8C=E5=A7=8B=E7=BB=88=E6=AD=A3=E5=B8=B8=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/platform-bridge/cmd/main.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/backend/platform-bridge/cmd/main.go b/backend/platform-bridge/cmd/main.go index 053819d..a496d8e 100644 --- a/backend/platform-bridge/cmd/main.go +++ b/backend/platform-bridge/cmd/main.go @@ -210,12 +210,6 @@ func main() { fireSilent(namespace, nil, videoURLs, voiceURLs) response = &bridge.UnifiedResponse{Messages: []bridge.ResponseMessage{{DisplayType: "silent"}}, Platform: msg.Platform} - case isAdmin && !isBotMentioned && shouldAdminBeSilent(msg, router): - msg.RouteType = "silent" - namespace := buildMemoryNamespace(msg.Platform, msg.ChannelType, msg.ChannelID) - fireSilent(namespace, imageURLs, videoURLs, voiceURLs) - response = &bridge.UnifiedResponse{Messages: []bridge.ResponseMessage{{DisplayType: "silent"}}, Platform: msg.Platform} - case isAdmin: msg.RouteType = "normal" response, routeErr = forwardToAICore(cfg, msg, "text", chatUserID, groupSessionID, imageURLs, videoURLs, voiceURLs, isAdmin)