diff options
Diffstat (limited to 'cli/http_cache.rs')
-rw-r--r-- | cli/http_cache.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/http_cache.rs b/cli/http_cache.rs index ba70512d8..27ec90d9d 100644 --- a/cli/http_cache.rs +++ b/cli/http_cache.rs @@ -134,7 +134,7 @@ impl HttpCache { }) } - pub(crate) fn get_cache_filename(&self, url: &Url) -> Option<PathBuf> { + pub fn get_cache_filename(&self, url: &Url) -> Option<PathBuf> { Some(self.location.join(url_to_filename(url)?)) } |