fix(message-router): 透传JoinSession响应中的Status字段
修复message-router代理JoinSession请求时遗漏Status字段的问题。 该字段用于service-party-app的方案B判断:当最后一个参与方加入时, 通过检查status='in_progress'来直接触发keygen,避免错过session_started事件。 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
ee59d1c0b1
commit
20c75c7817
|
|
@ -555,6 +555,7 @@ func (s *MessageRouterServer) JoinSession(
|
|||
ThresholdN: coordResp.SessionInfo.ThresholdN,
|
||||
ThresholdT: coordResp.SessionInfo.ThresholdT,
|
||||
MessageHash: coordResp.SessionInfo.MessageHash,
|
||||
Status: coordResp.SessionInfo.Status,
|
||||
KeygenSessionId: coordResp.SessionInfo.KeygenSessionId,
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue