Try different ip address field normalization
This commit is contained in:
parent
56d1c9fa33
commit
793a7b7b8f
1 changed files with 3 additions and 1 deletions
|
|
@ -404,7 +404,9 @@ export class ConferenceCallManager extends EventEmitter {
|
||||||
// https://www.w3.org/TR/webrtc-stats/#sotd
|
// https://www.w3.org/TR/webrtc-stats/#sotd
|
||||||
return {
|
return {
|
||||||
protocol: candidateStats.protocol,
|
protocol: candidateStats.protocol,
|
||||||
address: candidateStats.address || candidateStats.ip,
|
address: !!candidateStats.address
|
||||||
|
? candidateStats.address
|
||||||
|
: candidateStats.ip,
|
||||||
port: candidateStats.port,
|
port: candidateStats.port,
|
||||||
url: candidateStats.url,
|
url: candidateStats.url,
|
||||||
relayProtocol: candidateStats.relayProtocol,
|
relayProtocol: candidateStats.relayProtocol,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue