Merge pull request #4528 from ByteHamster/cache-no-store
Set cache-control to no-cache
This commit is contained in:
commit
e091b805b8
@ -71,6 +71,7 @@ public class HttpDownloader extends Downloader {
|
|||||||
// set header explicitly so that okhttp doesn't do transparent gzip
|
// set header explicitly so that okhttp doesn't do transparent gzip
|
||||||
Log.d(TAG, "addHeader(\"Accept-Encoding\", \"identity\")");
|
Log.d(TAG, "addHeader(\"Accept-Encoding\", \"identity\")");
|
||||||
httpReq.addHeader("Accept-Encoding", "identity");
|
httpReq.addHeader("Accept-Encoding", "identity");
|
||||||
|
httpReq.cacheControl(new CacheControl.Builder().noCache().build()); // noStore breaks CDNs
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!TextUtils.isEmpty(request.getLastModified())) {
|
if (!TextUtils.isEmpty(request.getLastModified())) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user