FIX: media tracks were not readded to a 3rd person in some situations
This commit is contained in:
parent
d2816220eb
commit
1e20466f74
1 changed files with 1 additions and 7 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue