Comparing version 2.5.2 to 2.5.3
# CHANGELOG - PageXray | ||
version 2.5.2 2019-01.09 | ||
version 2.5.3 2019-01-20 | ||
------------------------ | ||
### Fixed | ||
* Fixing null error with some tracking pixels , thank you [rohit-nar](https://github.com/rohit-nair) for the PR [#71](https://github.com/sitespeedio/pagexray/pull/71) | ||
version 2.5.2 2019-01-09 | ||
------------------------ | ||
### Fixed | ||
* If the HAR contains a URL for a page, use that URL (to get the right URL for a SPA) [#69](https://github.com/sitespeedio/pagexray/pull/69) | ||
@@ -7,0 +12,0 @@ |
@@ -194,3 +194,6 @@ 'use strict'; | ||
const entryStart = new Date(entry.startedDateTime).getTime(); | ||
if (entryStart > pageTimings[entry.pageref].onLoad) { | ||
if ( | ||
pageTimings[entry.pageref] && | ||
entryStart > pageTimings[entry.pageref].onLoad | ||
) { | ||
currentPage.afterOnLoad.requests += 1; | ||
@@ -200,3 +203,6 @@ currentPage.afterOnLoad.transferSize += entry.response.bodySize; | ||
} | ||
if (entryStart > pageTimings[entry.pageref].onContentLoad) { | ||
if ( | ||
pageTimings[entry.pageref] && | ||
entryStart > pageTimings[entry.pageref].onContentLoad | ||
) { | ||
currentPage.afterOnContentLoad.requests += 1; | ||
@@ -203,0 +209,0 @@ currentPage.afterOnContentLoad.transferSize += entry.response.bodySize; |
{ | ||
"name": "pagexray", | ||
"version": "2.5.2", | ||
"version": "2.5.3", | ||
"description": "Xray your HAR file and know all about the page", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
38866
738