summaryrefslogtreecommitdiff
path: root/src/mbgl/storage/response.cpp
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2017-08-01 18:00:48 +0200
committerKonstantin Käfer <mail@kkaefer.com>2017-08-07 12:43:36 +0200
commite34e5c4be0d49dc2d791bd67be91a23ad3ee4203 (patch)
tree1cc330ba85981c528dc34fee12c5c74dd3595ab0 /src/mbgl/storage/response.cpp
parente8bfcd04740bbc35a1e25038fe7b7d2577792b66 (diff)
downloadqtlocation-mapboxgl-e34e5c4be0d49dc2d791bd67be91a23ad3ee4203.tar.gz
[core] finish must-revalidate supportupstream/cache-control-must-revalidate
Diffstat (limited to 'src/mbgl/storage/response.cpp')
-rw-r--r--src/mbgl/storage/response.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mbgl/storage/response.cpp b/src/mbgl/storage/response.cpp
index a174339074..222f55db84 100644
--- a/src/mbgl/storage/response.cpp
+++ b/src/mbgl/storage/response.cpp
@@ -14,6 +14,7 @@ Response& Response::operator=(const Response& res) {
error = res.error ? std::make_unique<Error>(*res.error) : nullptr;
noContent = res.noContent;
notModified = res.notModified;
+ mustRevalidate = res.mustRevalidate;
data = res.data;
modified = res.modified;
expires = res.expires;