We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfa618b commit 64ad58eCopy full SHA for 64ad58e
third_party/WebKit/Source/core/fetch/Resource.cpp
@@ -967,6 +967,11 @@ bool Resource::canUseCacheValidator()
967
968
if (hasCacheControlNoStoreHeader())
969
return false;
970
+
971
+ // Do not revalidate Resource with redirects. https://crbug.com/613971
972
+ if (!redirectChain().isEmpty())
973
+ return false;
974
975
return m_response.hasCacheValidatorFields() || m_resourceRequest.hasCacheValidatorFields();
976
}
977
0 commit comments