From 861f37b7c63409a4cf832165023469e818f27a72 Mon Sep 17 00:00:00 2001 From: aishannon Date: Sun, 29 Mar 2026 16:06:44 +0800 Subject: [PATCH] fix test --- pkg/channels/qq/qq.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/channels/qq/qq.go b/pkg/channels/qq/qq.go index 8e57f28d5..a4ae437eb 100644 --- a/pkg/channels/qq/qq.go +++ b/pkg/channels/qq/qq.go @@ -114,7 +114,7 @@ func NewQQChannel(cfg config.QQConfig, messageBus *bus.MessageBus) (*QQChannel, } func (c *QQChannel) Start(ctx context.Context) error { - if c.config.AppID == "" || c.config.AppSecret.IsZero() { + if c.config.AppID == "" || c.config.AppSecret.String() == "" { return fmt.Errorf("QQ app_id and app_secret not configured") }