소스 검색

Ignore unrecognised 'default' stream.

master
paweldomas 11 년 전
부모
커밋
3f3046893e
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. 4
    1
      app.js

+ 4
- 1
app.js 파일 보기

356
         container  = document.getElementById(
356
         container  = document.getElementById(
357
                 'participant_' + Strophe.getResourceFromJid(data.peerjid));
357
                 'participant_' + Strophe.getResourceFromJid(data.peerjid));
358
     } else {
358
     } else {
359
-        if (data.stream.id !== 'mixedmslabel') {
359
+        if (data.stream.id !== 'mixedmslabel'
360
+            // FIXME: default stream is added always with new focus
361
+            // (to be investigated)
362
+            && data.stream.id !== 'default') {
360
             console.error('can not associate stream',
363
             console.error('can not associate stream',
361
                 data.stream.id,
364
                 data.stream.id,
362
                 'with a participant');
365
                 'with a participant');

Loading…
취소
저장