summaryrefslogtreecommitdiff
path: root/platform/default/online_file_source.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'platform/default/online_file_source.cpp')
-rw-r--r--platform/default/online_file_source.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/platform/default/online_file_source.cpp b/platform/default/online_file_source.cpp
index 37ac3e9838..120f21230c 100644
--- a/platform/default/online_file_source.cpp
+++ b/platform/default/online_file_source.cpp
@@ -276,7 +276,12 @@ void OnlineFileSource::Impl::startRealRequest(OnlineFileRequestImpl& request) {
auto callback = [this, &request](std::shared_ptr<const Response> response) {
request.realRequest = nullptr;
- if (cache && !util::isAssetURL(request.resource.url)) {
+ // Only update the cache for successful or 404 responses.
+ // In particular, we don't want to write a Canceled request, or one that failed due to
+ // connection errors to the cache. Server errors are hopefully also temporary, so we're not
+ // caching them either.
+ if (cache && !util::isAssetURL(request.resource.url) &&
+ (!response->error || (response->error->reason == Response::Error::Reason::NotFound))) {
// Store response in database. Make sure we only refresh the expires column if the data
// didn't change.
FileCache::Hint hint = FileCache::Hint::Full;