Remove stale cancelled inlay hints workaround

This commit is contained in:
Kirill Bulatov 2023-06-22 22:11:10 +03:00
parent 96a34ad0ee
commit 316e19ce94
2 changed files with 5 additions and 21 deletions

View file

@ -523,7 +523,7 @@ fn hints_fetch_task(
return Ok(None);
};
Ok(match task {
Some(task) => task.await.context("inlays for buffer task")?,
Some(task) => Some(task.await.context("inlays for buffer task")?),
None => Some(Vec::new()),
})
})