summaryrefslogtreecommitdiffstats
path: root/zellij-server/src/route.rs
diff options
context:
space:
mode:
authorJae-Heon Ji <32578710+jaeheonji@users.noreply.github.com>2022-02-23 23:50:49 +0900
committerGitHub <noreply@github.com>2022-02-23 23:50:49 +0900
commita489194b55817b68213618fa81718b7beae9eba0 (patch)
tree0cf7c6182028583e81b7cdcd69479274c4cbb819 /zellij-server/src/route.rs
parent39eddd8b1c31eb6932163841bda18a82044e4700 (diff)
fix: invalid assignment of `client_id` (#1052)
* feat: sync socket connection in * chore: apply clippy * chore: change message name
Diffstat (limited to 'zellij-server/src/route.rs')
-rw-r--r--zellij-server/src/route.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/zellij-server/src/route.rs b/zellij-server/src/route.rs
index fc14175a6..033a571b3 100644
--- a/zellij-server/src/route.rs
+++ b/zellij-server/src/route.rs
@@ -461,6 +461,10 @@ pub(crate) fn route_thread_main(
ClientToServerMsg::KillSession => {
to_server.send(ServerInstruction::KillSession).unwrap();
}
+ ClientToServerMsg::ConnStatus => {
+ let _ = to_server.send(ServerInstruction::ConnStatus(client_id));
+ break;
+ }
}
}
}