Skip to content
Snippets Groups Projects
Commit 6d381597 authored by Robin Appelman's avatar Robin Appelman
Browse files

fix build

parent 0eec3767
No related branches found
No related tags found
No related merge requests found
......@@ -48,6 +48,8 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: Swatinem/rust-cache@v1
- uses: actions-rs/cargo@v1
with:
......
......@@ -151,7 +151,7 @@ async fn user_connected(ws: WebSocket, connections: ActiveConnections, remote: O
}
};
tx.send(Ok(Message::text("authenticated"))).await?;
let _ = tx.send(Ok(Message::text("authenticated")));
let connection_id = connections.add(user_id.clone(), tx.clone());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment