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 7eff2b9be..37da00983 100644 --- a/cli/http_cache.rs +++ b/cli/http_cache.rs @@ -39,7 +39,7 @@ fn base_url_to_filename(url: &Url) -> Option<PathBuf> { }; out.push(host_port); } - "data" => (), + "data" | "blob" => (), scheme => { error!("Don't know how to create cache name for scheme: {}", scheme); return None; |