From b3829a3ca2333100dc214394bdf67174bd1f380f Mon Sep 17 00:00:00 2001 From: Ryan Alderete Date: Thu, 1 Aug 2019 17:32:28 +0000 Subject: [PATCH] Bug 1526039 - Fix protocol field in about:webrtc candidates table r=dminor "transport" is the old name for the field. This makes it so that the transport protocol is no longer printed as "undefined" in the ICE candidate table. Differential Revision: https://phabricator.services.mozilla.com/D39981 --HG-- extra : moz-landing-system : lando --- toolkit/content/aboutwebrtc/aboutWebrtc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolkit/content/aboutwebrtc/aboutWebrtc.js b/toolkit/content/aboutwebrtc/aboutWebrtc.js index c9379d367c88..167b9da78f95 100644 --- a/toolkit/content/aboutwebrtc/aboutWebrtc.js +++ b/toolkit/content/aboutwebrtc/aboutWebrtc.js @@ -909,7 +909,7 @@ ICEStats.prototype = { type = `${c.candidateType}-${c.relayProtocol}`; } - return `${c.address}:${c.port}/${c.transport}(${type})`; + return `${c.address}:${c.port}/${c.protocol}(${type})`; }, };