We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef7cfd3 commit c10f743Copy full SHA for c10f743
src/uploaders.rs
@@ -139,7 +139,7 @@ impl Uploader {
139
let content_length = body.len() as u64;
140
let content = Cursor::new(body);
141
let mut extra_headers = header::HeaderMap::new();
142
- extra_headers.insert(header::CACHE_CONTROL, CACHE_CONTROL_README.parse().unwrap());
+ extra_headers.insert(header::CACHE_CONTROL, CACHE_CONTROL_IMMUTABLE.parse().unwrap());
143
self.upload(
144
app.http_client(),
145
&path,
@@ -164,7 +164,7 @@ impl Uploader {
164
165
extra_headers.insert(
166
header::CACHE_CONTROL,
167
- CACHE_CONTROL_IMMUTABLE.parse().unwrap(),
+ CACHE_CONTROL_README.parse().unwrap(),
168
);
169
170
http_client,
0 commit comments