mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-24 12:04:57 +01:00
Merge branch 'matthew/fix-end-of-ice-candidates' into thirdroom/dev
This commit is contained in:
commit
9bde8a6220
@ -818,14 +818,16 @@ export class PeerCall implements IDisposable {
|
|||||||
|
|
||||||
private async addIceCandidates(candidates: RTCIceCandidate[], log: ILogItem): Promise<void> {
|
private async addIceCandidates(candidates: RTCIceCandidate[], log: ILogItem): Promise<void> {
|
||||||
for (const candidate of candidates) {
|
for (const candidate of candidates) {
|
||||||
|
let logItem;
|
||||||
if (
|
if (
|
||||||
(candidate.sdpMid === null || candidate.sdpMid === undefined) &&
|
(candidate.sdpMid === null || candidate.sdpMid === undefined) &&
|
||||||
(candidate.sdpMLineIndex === null || candidate.sdpMLineIndex === undefined)
|
(candidate.sdpMLineIndex === null || candidate.sdpMLineIndex === undefined)
|
||||||
) {
|
) {
|
||||||
log.log(`Ignoring remote ICE candidate with no sdpMid or sdpMLineIndex`);
|
logItem = log.log(`Got remote end-of-ICE candidates`);
|
||||||
continue;
|
}
|
||||||
|
else {
|
||||||
|
logItem = log.log(`Adding remote ICE ${candidate.sdpMid} candidate: ${candidate.candidate}`);
|
||||||
}
|
}
|
||||||
const logItem = log.log(`Adding remote ICE ${candidate.sdpMid} candidate: ${candidate.candidate}`);
|
|
||||||
try {
|
try {
|
||||||
await this.peerConnection.addIceCandidate(candidate);
|
await this.peerConnection.addIceCandidate(candidate);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
|
Loading…
Reference in New Issue
Block a user