mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
Fix unwrap bug in DAP (#6786)
This commit is contained in:
parent
1b016a89d5
commit
8839eb0af4
3 changed files with 36 additions and 27 deletions
|
@ -62,12 +62,10 @@ impl Client {
|
|||
if command.is_empty() {
|
||||
return Result::Err(Error::Other(anyhow!("Command not provided")));
|
||||
}
|
||||
if transport == "tcp" && port_arg.is_some() {
|
||||
Self::tcp_process(command, args, port_arg.unwrap(), id).await
|
||||
} else if transport == "stdio" {
|
||||
Self::stdio(command, args, id)
|
||||
} else {
|
||||
Result::Err(Error::Other(anyhow!("Incorrect transport {}", transport)))
|
||||
match (transport, port_arg) {
|
||||
("tcp", Some(port_arg)) => Self::tcp_process(command, args, port_arg, id).await,
|
||||
("stdio", _) => Self::stdio(command, args, id),
|
||||
_ => Result::Err(Error::Other(anyhow!("Incorrect transport {}", transport))),
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue