fix: Fix regression where formatting would fail on null response

This commit is contained in:
Blaž Hrastnik 2021-09-09 11:48:08 +09:00
parent 394cc4f30f
commit bb47a9a0b8

View file

@ -614,8 +614,8 @@ pub fn text_document_formatting(
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())
})
}