| Index: content/browser/download/download_request_core.cc
|
| diff --git a/content/browser/download/download_request_core.cc b/content/browser/download/download_request_core.cc
|
| index 46c21462ac5289b2856c585cd718de1a9eb970a7..f23dcda4bf2270fd276a3f387260bdb0b76bbd3c 100644
|
| --- a/content/browser/download/download_request_core.cc
|
| +++ b/content/browser/download/download_request_core.cc
|
| @@ -147,9 +147,9 @@ std::unique_ptr<net::URLRequest> DownloadRequestCore::CreateRequestOnIOThread(
|
| // re-post. For GETs, try to retrieve data from the cache and skip
|
| // validating the entry if present.
|
| if (request->get_upload())
|
| - load_flags |= net::LOAD_ONLY_FROM_CACHE;
|
| + load_flags |= net::LOAD_ONLY_FROM_CACHE | net::LOAD_SKIP_CACHE_VALIDATION;
|
| else
|
| - load_flags |= net::LOAD_PREFERRING_CACHE;
|
| + load_flags |= net::LOAD_SKIP_CACHE_VALIDATION;
|
| } else {
|
| load_flags |= net::LOAD_DISABLE_CACHE;
|
| }
|
|
|