Skip to content

Commit

Permalink
accidentally stopped using _filteredTraceSort
Browse files Browse the repository at this point in the history
  • Loading branch information
connorjclark committed Jun 7, 2024
1 parent 7115c63 commit a4bd8b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/lib/lantern/page-dependency-graph.js
Original file line number Diff line number Diff line change
Expand Up @@ -874,7 +874,7 @@ class PageDependencyGraph {
}
}

return trace.traceEvents.filter(e => rendererPidToTid.get(e.pid) === e.tid);
return this._filteredTraceSort(trace.traceEvents, e => rendererPidToTid.get(e.pid) === e.tid);
}

/**
Expand Down

0 comments on commit a4bd8b7

Please sign in to comment.