From 3ad8edcdec89f940d715720b417ef5d388adf9a6 Mon Sep 17 00:00:00 2001 From: wynnmeng Date: Fri, 27 Feb 2026 14:28:09 +0800 Subject: [PATCH] feat(feishu): add StartTyping stub for 32-bit architecture --- pkg/channels/feishu/feishu_32.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkg/channels/feishu/feishu_32.go b/pkg/channels/feishu/feishu_32.go index d0ec758c6..3029c4060 100644 --- a/pkg/channels/feishu/feishu_32.go +++ b/pkg/channels/feishu/feishu_32.go @@ -37,3 +37,8 @@ func (c *FeishuChannel) Stop(ctx context.Context) error { func (c *FeishuChannel) Send(ctx context.Context, msg bus.OutboundMessage) error { return errors.New("feishu channel is not supported on 32-bit architectures") } + +// StartTyping is a stub method to satisfy the TypingCapable interface +func (c *FeishuChannel) StartTyping(ctx context.Context, chatID string) (func(), error) { + return func() {}, errors.New("feishu channel is not supported on 32-bit architectures") +} \ No newline at end of file