@3dsource/angular-unreal-module 0.0.36 → 0.0.37

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1672,7 +1672,7 @@ class WebRtcPlayerService extends SubService {
1672
1672
  });
1673
1673
  fromEvent(pcClient, 'icecandidate')
1674
1674
  .pipe(map$1((e) => e.candidate), filter(Truthy), tap$1((candidate) => Logger.info('[Browser ICE candidate]', '| Type=', candidate.type, '| Protocol=', candidate.protocol, '| Address=', candidate.address, '| Port=', candidate.port, '|')), takeUntil(this.disconnect$))
1675
- .subscribe((candidate) => this.signallingSrv.send(candidate));
1675
+ .subscribe((candidate) => this.signallingSrv.send({ type: 'iceCandidate', candidate }));
1676
1676
  fromEvent(pcClient, 'datachannel')
1677
1677
  .pipe(tap$1(() => Logger.info('Data channel created for us by browser as we are a receiving peer.')), map$1((e) => e.channel), takeUntil(this.disconnect$))
1678
1678
  .subscribe((datachannel) => {