diff --git a/lib/getstats.js b/lib/getstats.js index 42f22ad0..221bb2a2 100644 --- a/lib/getstats.js +++ b/lib/getstats.js @@ -168,7 +168,8 @@ function standardizeChromeOrSafariActiveIceCandidatePairStats(stats) { { key: 'state', type: 'string', fixup: function(state) { return state === 'inprogress' ? 'in-progress' : state; } }, { key: 'totalRoundTripTime', type: 'number' }, { key: 'transportId', type: 'string' }, - { key: 'writable', type: 'boolean' } + { key: 'writable', type: 'boolean' }, + { key: 'timestamp', type: 'number' } ].reduce(function(report, keyInfo) { report[keyInfo.key] = typeof activeCandidatePairStats[keyInfo.key] === keyInfo.type ? (keyInfo.fixup ? keyInfo.fixup(activeCandidatePairStats[keyInfo.key]) : activeCandidatePairStats[keyInfo.key])