Fix macro forwarding

This commit is contained in:
Tobias Reisinger 2026-09-07 23:18:09 +02:00
commit f7216be6e5
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
4 changed files with 4 additions and 4 deletions

View file

@ -139,7 +139,7 @@ pub async fn execute(
let affected_relays =
collect_affected_relays(&mut pool_conn, &mut actions, &controller).await?;
ws_server_tx.send(WsServerAction::ForwardToController(uid.clone(), ControllersWsAction::Relays(affected_relays.clone())))?;
ws_server_tx.send(WsServerAction::ForwardToController(controller.uid.clone(), ControllersWsAction::Relays(affected_relays.clone())))?;
}
pool_conn.close().await?;