From 5ed12820c3a85a1a250476734904f74e1ae9205c Mon Sep 17 00:00:00 2001 From: aishannon Date: Sun, 15 Mar 2026 19:15:13 +0800 Subject: [PATCH] 1. fix seq reset. 2. remove SendMarkdown config --- pkg/channels/qq/qq.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkg/channels/qq/qq.go b/pkg/channels/qq/qq.go index 596391f0c..29d675143 100644 --- a/pkg/channels/qq/qq.go +++ b/pkg/channels/qq/qq.go @@ -37,7 +37,7 @@ const ( dedupInterval = 60 * time.Second dedupMaxSize = 10000 // hard cap on dedup map entries typingResend = 8 * time.Second - typingSeconds = 20 + typingSeconds = 10 ) var emojiRegexp = regexp.MustCompile(`<[^<]*?ext="([^"]+)"[^<]*?faceType=(\d+)[^<]*?>|<[^<]*?faceType=(\d+)[^<]*?ext="([^"]+)"[^<]*?>`) @@ -253,7 +253,6 @@ func (c *QQChannel) getReplyExtInfo(ctx context.Context, chatID string) (replyID c.replySeq.Store(0) seq = c.replySeq.Add(1) } - return replyID, seq }