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
This commit is contained in:
Ryan Alderete 2019-08-01 17:32:28 +00:00
Родитель 2670963c96
Коммит b3829a3ca2
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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})`;
},
};