fix: Fix regression where formatting would fail on null response
This commit is contained in:
parent
394cc4f30f
commit
bb47a9a0b8
1 changed files with 2 additions and 2 deletions
|
@ -614,8 +614,8 @@ impl Client {
|
|||
|
||||
Some(async move {
|
||||
let json = request.await?;
|
||||
let response: Vec<lsp::TextEdit> = serde_json::from_value(json)?;
|
||||
Ok(response)
|
||||
let response: Option<Vec<lsp::TextEdit>> = serde_json::from_value(json)?;
|
||||
Ok(response.unwrap_or_default())
|
||||
})
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue