diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2021-12-23 00:25:06 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-22 14:25:06 +0100 |
commit | 8547a37132752cf6a979237c5a52a7bf16a4e833 (patch) | |
tree | 10e14c5aa8675bf75c8aa66bf7bf1f7de6948fee /cli/lsp/cache.rs | |
parent | ac06797fa8607f2e15477fe1b038215740a5747d (diff) |
chore: update deno_graph and deno_doc (#13173)
Diffstat (limited to 'cli/lsp/cache.rs')
-rw-r--r-- | cli/lsp/cache.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/lsp/cache.rs b/cli/lsp/cache.rs index b26c0ba4f..941b6d9cf 100644 --- a/cli/lsp/cache.rs +++ b/cli/lsp/cache.rs @@ -83,7 +83,7 @@ impl CacheServer { ) .await; - if tx.send(graph_valid(&graph, true)).is_err() { + if tx.send(graph_valid(&graph, true, false)).is_err() { log::warn!("cannot send to client"); } } |