diff --git a/src/content/insertable-streams/endtoend-encryption/js/worker.js b/src/content/insertable-streams/endtoend-encryption/js/worker.js index a5d841da0..4ab8fabcc 100644 --- a/src/content/insertable-streams/endtoend-encryption/js/worker.js +++ b/src/content/insertable-streams/endtoend-encryption/js/worker.js @@ -44,7 +44,7 @@ function dump(encodedFrame, direction, max = 16) { console.log(performance.now().toFixed(2), direction, bytes.trim(), 'len=' + encodedFrame.data.byteLength, 'type=' + (encodedFrame.type || 'audio'), - 'ts=' + encodedFrame.timestamp, + 'ts=' + (metadata.rtpTimestamp || encodedFrame.timestamp), 'ssrc=' + metadata.synchronizationSource, 'pt=' + (metadata.payloadType || '(unknown)'), 'mimeType=' + (metadata.mimeType || '(unknown)'),