fix(UA): signing endpoint accepts arbitrary client_id

This commit is contained in:
CleverWild
2026-06-19 22:21:48 +02:00
committed by Skipper
parent 2b53023234
commit 5ecf3508d6
4 changed files with 38 additions and 4 deletions

View File

@@ -83,7 +83,7 @@ impl Actor for ClientSession {
args.props
.actors
.flow_coordinator
.ask(RegisterClient { actor: this })
.ask(RegisterClient { client_id: args.client_id, actor: this })
.await
.map_err(|_| Error::ConnectionRegistrationFailed)?;
Ok(args)