summaryrefslogtreecommitdiffstats
path: root/zellij-client/src
diff options
context:
space:
mode:
authorraphCode <15750438+raphCode@users.noreply.github.com>2022-09-14 17:33:46 +0200
committerGitHub <noreply@github.com>2022-09-14 17:33:46 +0200
commit65d12c4b9bd253a73756d384729463fa634e2b32 (patch)
tree8017c3b0195665cd0ca4563654abc94a9a1555bc /zellij-client/src
parent31d741263cf8dbbab463374d300349d00d1b93af (diff)
Don't send the server an exit signal when client panics (#1731)
* Don't send the server an exit signal when client crashes * Update changelog
Diffstat (limited to 'zellij-client/src')
-rw-r--r--zellij-client/src/lib.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/zellij-client/src/lib.rs b/zellij-client/src/lib.rs
index 067ad7329..9c5169cc7 100644
--- a/zellij-client/src/lib.rs
+++ b/zellij-client/src/lib.rs
@@ -26,7 +26,7 @@ use zellij_utils::{
data::{ClientId, InputMode, Style},
envs,
errors::{ClientContext, ContextType, ErrorInstruction},
- input::{actions::Action, config::Config, options::Options},
+ input::{config::Config, options::Options},
ipc::{ClientAttributes, ClientToServerMsg, ExitReason, ServerToClientMsg},
termwiz::input::InputEvent,
};
@@ -356,7 +356,6 @@ pub fn start_client(
break;
},
ClientInstruction::Error(backtrace) => {
- let _ = os_input.send_to_server(ClientToServerMsg::Action(Action::Quit, None));
handle_error(backtrace);
},
ClientInstruction::Render(output) => {