fix: Fix regression where formatting would fail on null response

pull/739/head
Blaž Hrastnik 3 years ago
parent 394cc4f30f
commit bb47a9a0b8

@ -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…
Cancel
Save