зеркало из https://github.com/mozilla/gecko-dev.git
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:
Родитель
2670963c96
Коммит
b3829a3ca2
|
@ -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})`;
|
||||
},
|
||||
};
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче