diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2021-11-08 09:35:32 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-08 09:35:32 +1100 |
commit | 91f8bdda2cfb98ffdbce59a600fc3602534d5249 (patch) | |
tree | 31e8946c32119ca68fc5e7fe9de6afc653164ab5 /cli/file_fetcher.rs | |
parent | b6b25671b29133a8a2f1325094dbd871655f8560 (diff) |
fix(lsp): cache unsupported import completion origins (#12661)
Fixes #12621
Diffstat (limited to 'cli/file_fetcher.rs')
-rw-r--r-- | cli/file_fetcher.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/file_fetcher.rs b/cli/file_fetcher.rs index 0c771f4cf..509050924 100644 --- a/cli/file_fetcher.rs +++ b/cli/file_fetcher.rs @@ -232,7 +232,7 @@ pub struct FileFetcher { allow_remote: bool, cache: FileCache, cache_setting: CacheSetting, - http_cache: HttpCache, + pub(crate) http_cache: HttpCache, http_client: reqwest::Client, blob_store: BlobStore, } |