fix(feishu): infer receive_id_type from ID prefix in _send_raw_message#7694
Open
tomqiaozc wants to merge 1 commit into
Open
fix(feishu): infer receive_id_type from ID prefix in _send_raw_message#7694tomqiaozc wants to merge 1 commit into
tomqiaozc wants to merge 1 commit into
Conversation
The hardcoded "chat_id" caused API errors when sending to user open_ids (ou_ prefix) or union_ids (on_ prefix). Now infers the correct receive_id_type from the ID prefix, matching the existing pattern in _resolve_sender_name. Fixes NousResearch#7685 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This was referenced Apr 26, 2026
Collaborator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
_send_raw_messagehardcodedreceive_id_type="chat_id", causing Feishu API errors ([230001] invalid receive_id) when sending to user open_ids (ou_prefix) or union_ids (on_prefix)receive_id_typefrom the ID prefix, matching the existing pattern in_resolve_sender_name"chat_id"for group chats (oc_prefix), preserving backward compatibilityFixes #7685
Test plan
oc_xxx→"chat_id",ou_xxx→"open_id",on_xxx→"union_id"🤖 Generated with Claude Code