lighthouse 12.0.0-dev.20240501 → 12.0.0-dev.20240503
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -112,7 +112,7 @@ const RESOURCE_TYPES = {
|
|
|
112
112
|
class NetworkRequest {
|
|
113
113
|
constructor() {
|
|
114
114
|
this.requestId = '';
|
|
115
|
-
this.connectionId =
|
|
115
|
+
this.connectionId = 0;
|
|
116
116
|
this.connectionReused = false;
|
|
117
117
|
|
|
118
118
|
this.url = '';
|
|
@@ -344,7 +344,7 @@ class NetworkRequest {
|
|
|
344
344
|
_onResponse(response, timestamp, resourceType) {
|
|
345
345
|
this.url = response.url;
|
|
346
346
|
|
|
347
|
-
this.connectionId =
|
|
347
|
+
this.connectionId = response.connectionId;
|
|
348
348
|
this.connectionReused = response.connectionReused;
|
|
349
349
|
|
|
350
350
|
if (response.protocol) this.protocol = response.protocol;
|
package/package.json
CHANGED