mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 718738 - Send all StartupInfo values in telemetry ping. r=tglek
This commit is contained in:
parent
eda430e92c
commit
1851ac1d49
@ -117,8 +117,8 @@ function getSimpleMeasurements() {
|
||||
} catch (ex) {}
|
||||
|
||||
if (si.process) {
|
||||
for each (let field in ["main", "firstPaint", "sessionRestored"]) {
|
||||
if (!(field in si))
|
||||
for each (let field in Object.keys(si))]) {
|
||||
if (field == "process")
|
||||
continue;
|
||||
ret[field] = si[field] - si.process
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user