Skip to content

Commit

Permalink
Ignore memory cache hits too. ref #2143
Browse files Browse the repository at this point in the history
  • Loading branch information
paulirish committed May 4, 2017
1 parent 04579fe commit b1784d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lighthouse-core/audits/load-fast-enough-for-pwa.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class LoadFastEnough4Pwa extends Audit {
const allRequestLatencies = networkRecords.map(record => {
// Ignore requests that don't have timing data or resources that have
// previously been requested and are coming from the cache.
if (!record._timing || record._fromDiskCache) {
if (!record._timing || record._fromDiskCache || record._fromMemoryCache) {
return undefined;
}

Expand Down

0 comments on commit b1784d1

Please sign in to comment.