summaryrefslogtreecommitdiff
path: root/src/mbgl/storage/response.cpp
diff options
context:
space:
mode:
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 22263d2ebb..09c43c8a6a 100644
--- a/src/mbgl/storage/response.cpp
+++ b/src/mbgl/storage/response.cpp
@@ -9,6 +9,7 @@ Response::Response(const Response& res) {
Response& Response::operator=(const Response& res) {
error = res.error ? std::make_unique<Error>(*res.error) : nullptr;
+ noContent = res.noContent;
notModified = res.notModified;
data = res.data;
modified = res.modified;