| Index: Source/devtools/front_end/network/HAREntry.js
|
| diff --git a/Source/devtools/front_end/network/HAREntry.js b/Source/devtools/front_end/network/HAREntry.js
|
| index ca6a2b8c41e4154d8a435f83534cfacb350d56ff..aa1d049593b28c748321599fa7ae42d278e2b7c8 100644
|
| --- a/Source/devtools/front_end/network/HAREntry.js
|
| +++ b/Source/devtools/front_end/network/HAREntry.js
|
| @@ -58,8 +58,8 @@ WebInspector.HAREntry.prototype = {
|
| timings: this._buildTimings()
|
| };
|
|
|
| - if (this._request.connectionId)
|
| - entry.connection = String(this._request.connectionId);
|
| + if (this._request.connectionId !== "0")
|
| + entry.connection = this._request.connectionId;
|
| var page = this._request.target().networkLog.pageLoadForRequest(this._request);
|
| if (page)
|
| entry.pageref = "page_" + page.id;
|
|
|