Ignore unrecognised 'default' stream.
This commit is contained in:
parent
0f6b6ae960
commit
3f3046893e
5
app.js
5
app.js
|
@ -356,7 +356,10 @@ function waitForPresence(data, sid) {
|
||||||
container = document.getElementById(
|
container = document.getElementById(
|
||||||
'participant_' + Strophe.getResourceFromJid(data.peerjid));
|
'participant_' + Strophe.getResourceFromJid(data.peerjid));
|
||||||
} else {
|
} else {
|
||||||
if (data.stream.id !== 'mixedmslabel') {
|
if (data.stream.id !== 'mixedmslabel'
|
||||||
|
// FIXME: default stream is added always with new focus
|
||||||
|
// (to be investigated)
|
||||||
|
&& data.stream.id !== 'default') {
|
||||||
console.error('can not associate stream',
|
console.error('can not associate stream',
|
||||||
data.stream.id,
|
data.stream.id,
|
||||||
'with a participant');
|
'with a participant');
|
||||||
|
|
Loading…
Reference in New Issue