Merge branch 'develop' of github.com:thecodingmachine/workadventure
This commit is contained in:
commit
8ab4b5b80c
@ -409,13 +409,7 @@ export class SimplePeer {
|
|||||||
if (!localStream) {
|
if (!localStream) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
PeerConnection.addStream(localStream);
|
||||||
for (const track of localStream.getTracks()) {
|
|
||||||
//todo: this is a ugly hack to reduce the amount of error in console. Find a better way.
|
|
||||||
if ((track as any).added !== undefined) continue; // eslint-disable-line @typescript-eslint/no-explicit-any
|
|
||||||
(track as any).added = true; // eslint-disable-line @typescript-eslint/no-explicit-any
|
|
||||||
PeerConnection.addTrack(track, localStream);
|
|
||||||
}
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error(`pushVideoToRemoteUser => ${userId}`, e);
|
console.error(`pushVideoToRemoteUser => ${userId}`, e);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user