Closed
Bug 1139752
Opened 10 years ago
Closed 10 years ago
Fix about:telemetry to work with the unified pings
Categories
(Toolkit :: Telemetry, defect)
Tracking
()
RESOLVED
FIXED
mozilla39
Tracking | Status | |
---|---|---|
firefox39 | --- | fixed |
People
(Reporter: vladan, Assigned: vladan)
References
Details
Attachments
(1 file)
928 bytes,
patch
|
Yoric
:
review+
|
Details | Diff | Splinter Review |
about:telemetry doesn't load because of an exception "TypeError: value is null"
renderBody: function KeyValueTable_renderBody(aTable, aMeasurements) {
for (let [key, value] of Iterator(aMeasurements)) {
// use .valueOf() to unbox Number, String, etc. objects
====> if ((typeof value == "object") && (typeof value.valueOf() == "object")) {
value = RenderObject(value);
}
I think this exception occurs when handling the "System Information" section
Assignee | ||
Comment 1•10 years ago
|
||
Attachment #8574090 -
Flags: review?(nfroyd)
Assignee | ||
Updated•10 years ago
|
Attachment #8574090 -
Flags: review?(nfroyd) → review?(dteller)
Comment 2•10 years ago
|
||
Comment on attachment 8574090 [details] [diff] [review]
aboutTelemetryNull.patch
Review of attachment 8574090 [details] [diff] [review]:
-----------------------------------------------------------------
This definitely makes sense.
Attachment #8574090 -
Flags: review?(dteller) → review+
Assignee | ||
Updated•10 years ago
|
Keywords: checkin-needed
Comment 3•10 years ago
|
||
Keywords: checkin-needed
Whiteboard: [fixed-in-fx-team]
Status: NEW → RESOLVED
Closed: 10 years ago
status-firefox39:
--- → fixed
Resolution: --- → FIXED
Whiteboard: [fixed-in-fx-team]
Target Milestone: --- → mozilla39
You need to log in
before you can comment on or make changes to this bug.
Description
•