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 a4a138b commit 459a45eCopy full SHA for 459a45e
src/resource-manager/resource_service.js
@@ -27,6 +27,11 @@ cls.ResourceInspector = function(network_logger)
27
{
28
this._document_list = new cls.DocumentManager["1.0"].DocumentList(msg).documentList;
29
30
+ this._document_list = this._document_list.filter(function(d) {
31
+ // discard documents that do not have a URL property yet
32
+ return Boolean(d.url);
33
+ });
34
+
35
this._document_list.forEach(function(d) {
36
// use the URL class
37
d.original_url = d.url;
0 commit comments